<?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; } }