where('title', 'name', "%" . $q . "%"); } $a = $query->limit(10)->get(); return $a; } public function companies() { return $this->hasMany(Company::class, "category_id"); } public function getDetailUrl() { return route('companies.index',['category'=>$this->id]); } }