mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
20 lines
386 B
PHP
20 lines
386 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
class CountriesModel extends BaseModel
|
|
{
|
|
protected $table = 'auth_countries';
|
|
protected $primaryKey = 'id_country';
|
|
protected $allowedFields = [
|
|
'phone',
|
|
'code',
|
|
'name',
|
|
'symbol',
|
|
'capital',
|
|
'currency',
|
|
'continent',
|
|
'continent_code',
|
|
'alpha_3',
|
|
'data_lang'
|
|
];
|
|
} |