mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
24 lines
439 B
PHP
Executable File
24 lines
439 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models\Usuarios;
|
|
|
|
class GroupsUsersModel extends \App\Models\BaseModel
|
|
{
|
|
protected $table = "auth_groups_users";
|
|
|
|
/**
|
|
* Whether primary key uses auto increment.
|
|
*
|
|
* @var bool
|
|
*/
|
|
|
|
protected $primaryKey = "id";
|
|
|
|
protected $allowedFields = ["id", "user_id", "group"];
|
|
protected $returnType = "App\Entities\Usuarios\GroupsUsersEntity";
|
|
|
|
public static $labelField = "group";
|
|
|
|
|
|
}
|