mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
17 lines
391 B
PHP
17 lines
391 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
class UserGroupModel extends BaseModel
|
|
{
|
|
protected $table = 'auth_user_group';
|
|
protected $primaryKey = 'id_group';
|
|
protected $allowedFields = [
|
|
'title',
|
|
'dashboard',
|
|
'rules',
|
|
'token'
|
|
];
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
} |