mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
23 lines
332 B
PHP
23 lines
332 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
|
|
use App\Models\Usuarios\GroupUserModel;
|
|
|
|
class Test extends BaseController
|
|
{
|
|
|
|
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$model = new GroupUserModel();
|
|
var_dump($model->getUsersWithRol('115b5ad39b853084209caf6824224f6b'));
|
|
}
|
|
}
|
|
|