41 lines
617 B
PHP
41 lines
617 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\Role;
|
|
use App\Repositories\BaseRepository;
|
|
|
|
/**
|
|
* Class RoleRepository
|
|
* @package App\Repositories
|
|
* @version May 30, 2022, 11:47 am UTC
|
|
*/
|
|
|
|
class RoleRepository extends BaseRepository
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fieldSearchable = [
|
|
'role'
|
|
];
|
|
|
|
/**
|
|
* Return searchable fields
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getFieldsSearchable()
|
|
{
|
|
return $this->fieldSearchable;
|
|
}
|
|
|
|
/**
|
|
* Configure the Model
|
|
**/
|
|
public function model()
|
|
{
|
|
return Role::class;
|
|
}
|
|
}
|