'=', 'title' => 'like', 'show' => '=', ]; /** * Specify Model class name * * @return string */ public function model() { return Notice::class; } /** * Specify Validator class name * * @return mixed */ public function validator() { return NoticeValidator::class; } /** * Boot up the repository, pushing criteria */ public function boot() { // $this->pushCriteria(app(RequestCriteria::class)); } }