File "CountryRepository.php"
Full path: /home/smartkey/skey_in/app/Repositories/CountryRepository.php
File size: 513 B
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}