Compare commits

..

No commits in common. "d54c017d40b8ee03fa96a497378ff7e2ca3a5a3c" and "df8a4c258a542294cc40462ee097fa9df6766b84" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -33,7 +33,6 @@ public function index()
return $this->vuew('index', [ return $this->vuew('index', [
'departments' => department::where('name', 'LIKE', "%{$q}%") 'departments' => department::where('name', 'LIKE', "%{$q}%")
->orWhere('description', 'LIKE', "%{$q}%")
->select([ ->select([
'id', 'id',
'name', 'name',

View File

@ -24,7 +24,7 @@ class department extends Model
*/ */
protected $fillable = [ protected $fillable = [
'name', 'name',
'description' 'description',
]; ];
/** /**