mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
59f09bf2cf
[ci skip] [skip ci]
70 lines
2.8 KiB
PHP
70 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\Country.
|
|
*
|
|
* @property int $id
|
|
* @property string|null $capital
|
|
* @property string|null $citizenship
|
|
* @property string $country_code
|
|
* @property string|null $currency
|
|
* @property string|null $currency_code
|
|
* @property string|null $currency_sub_unit
|
|
* @property string|null $currency_symbol
|
|
* @property int|null $currency_decimals
|
|
* @property string|null $full_name
|
|
* @property string $iso_3166_2
|
|
* @property string $iso_3166_3
|
|
* @property string $name
|
|
* @property string $region_code
|
|
* @property string $sub_region_code
|
|
* @property bool $eea
|
|
* @property string|null $calling_code
|
|
* @property string|null $flag
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereCallingCode($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereCapital($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereCitizenship($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereCountryCode($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereCurrency($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereCurrencyCode($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereCurrencyDecimals($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereCurrencySubUnit($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereCurrencySymbol($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereEea($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereFlag($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereFullName($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereIso31662($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereIso31663($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereName($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereRegionCode($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Country whereSubRegionCode($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class Country extends Model
|
|
{
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $incrementing = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $guarded = [];
|
|
}
|