mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
13 lines
245 B
PHP
Executable File
13 lines
245 B
PHP
Executable File
<?php
|
|
namespace App\Models;
|
|
|
|
class CurrencyModel extends BaseModel
|
|
{
|
|
protected $table = 'auth_currency';
|
|
protected $primaryKey = 'id_currency';
|
|
protected $allowedFields = [
|
|
'code',
|
|
'name',
|
|
'data_lang'
|
|
];
|
|
} |