35 lines
830 B
PHP
35 lines
830 B
PHP
<?php
|
|
|
|
namespace Vanguard;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @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 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 int $eea
|
|
* @property string|null $calling_code
|
|
* @property string|null $flag
|
|
*/
|
|
class Country extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'countries';
|
|
|
|
public $timestamps = false;
|
|
}
|