YusifHajiyev
CustomCheckbox
How to get the value of specialty_id and admission_year_id at the top of forum $groups = Group::query()
->where('specialty_id', $get('specialty_id'))
->where('admission_year_id', $get('admission_year_id'))
->get(); can i use here right now
CheckboxList::make($group->name)
->label($group->name)
->options($group->students->pluck('username', 'id'))
->searchable()
->columnSpanFull()
->bulkToggleable()
this part returns true to me but it needs to be an array.
2 replies
User & Admin panel
Hello. I have created my User and Admin panel. I want http://127.0.0.1:8000/user to go directly to dashboard page without login page. How can I do this?
9 replies
getTabs()
public function getTabs(): array
{
return [
'all' => Tab::make('Active')->modifyQueryUsing(function ($query) {
return $query->where('status', 1);
}),
];
}
Method Filament\Forms\Components\Tabs\Tab::modifyQueryUsing does not exist.
What is the problem here?
3 replies