Habilidades Puntuadas #2

Merged
juan.zapata merged 7 commits from Skills into main 2025-07-17 19:50:45 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit d54c017d40 - Show all commits

View File

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

View File

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