YusifHajiyev
YusifHajiyev
FFilament
Created by YusifHajiyev on 2/21/2024 in #❓┊help
CustomCheckbox
$groups = Group::all(); this works but $groups = Group::query() ->where('specialty_id', $get('specialty_id')) ->where('admission_year_id', $get('admission_year_id')) ->get(); it doesn't work, what's wrong?
2 replies
FFilament
Created by YusifHajiyev on 2/20/2024 in #❓┊help
Login Page How to change title
thanks
3 replies
FFilament
Created by YusifHajiyev on 1/19/2024 in #❓┊help
How can I create such a modal?
Action::make('Resit') ->icon('heroicon-o-clock') ->fillForm(function (Enrolment $enrolment) { }) ->form([
]) ->action(function (array $data, Enrolment $enrolment): void { try { Notification::make() ->title('Student Resit submitted') ->success() ->send(); } catch (Exception $exception) { Notification::make() ->title($exception->getMessage()) ->danger() ->send(); } }) how to added this form section
4 replies