| DIR: /home/cardxfeb/public_html/app/Repositories/ |
| Current File : //home/cardxfeb/public_html/app/Repositories/StateRepository.php |
<?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;
}
}
|