TRF Certest first commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user