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