File "StateRepository.php"
Full path: /home/smartkey/skey_in/app/Repositories/StateRepository.php
File size: 485 B
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories;
use App\Models\State;
class StateRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
'name',
'country_id',
];
/**
* Return searchable fields
*/
public function getFieldsSearchable(): array
{
return $this->fieldSearchable;
}
/**
* Configure the Model
**/
public function model()
{
return State::class;
}
}