Files
safekat/ci4/app/Models/ThemeModel.php
2023-04-24 13:00:46 +02:00

13 lines
231 B
PHP

<?php
namespace App\Models;
class ThemeModel extends BaseModel
{
protected $table = 'auth_theme';
protected $primaryKey = 'id_theme';
protected $allowedFields = [
'name',
'type',
'path'
];
}