| DIR: /home/cardxfeb/public_html/app/Repositories/ |
| Current File : //home/cardxfeb/public_html/app/Repositories/CountryRepository.php |
<?php
namespace App\Repositories;
use App\Models\Country;
class CountryRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
'name',
'short_code',
'phone_code',
];
/**
* Return searchable fields
*/
public function getFieldsSearchable(): array
{
return $this->fieldSearchable;
}
/**
* Configure the Model
**/
public function model()
{
return Country::class;
}
}
|