PATH:
home
/
rwabteecom
/
public_html_old
/
app
/
Repositories
/
Editing: 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; } }
SAVE
CANCEL