samran2000
samran2000
FFilament
Created by WEBMAS on 4/5/2024 in #❓┊help
How to place a navigation element without a group between groups or after?
there is no other way
54 replies
FFilament
Created by WEBMAS on 4/5/2024 in #❓┊help
How to place a navigation element without a group between groups or after?
I think you need to make navigation group of it and then do this in your app/Providers/Filament/AdminPanelProviders.php ->navigationGroups([ NavigationGroup::make() ->label('Job Pool System'), NavigationGroup::make() ->label('Authorization System'), NavigationGroup::make() ->label('Attendance / Activity System'), NavigationGroup::make() ->label('Leave Management System'), NavigationGroup::make() ->label('Project Management System'), NavigationGroup::make() ->label('Issue Tracking System'), NavigationGroup::make() ->label('Pay Roll'), NavigationGroup::make() ->label('Configuration'), ])
54 replies
FFilament
Created by HL on 4/5/2024 in #❓┊help
How can I conditionally disable a custom input field?
try to use disabledOn() function you can read this furtheer here:- https://github.com/filamentphp/filament/discussions/2739 You can callback a function in this also
4 replies
FFilament
Created by Jon Mason on 11/25/2023 in #❓┊help
Make select re-render after changing data
kindly read this :- https://filamentphp.com/docs/3.x/panels/pages#refreshing-form-data I think you need to replace 'Status' with 'quickbooks_vendor_ref_id' i don't know the exact answer but I think this will work
7 replies
FFilament
Created by chinmaya on 4/5/2024 in #❓┊help
Sending data to controller
5 replies
FFilament
Created by WEBMAS on 4/5/2024 in #❓┊help
How to place a navigation element without a group between groups or after?
put this in other 2 as well your code will be like this Blog Group:- protected static ?int $navigationSort = 1; Shop Group:- protected static ?int $navigationSort = 2; Settings:- protected static ?int $navigationSort = 3;
54 replies
FFilament
Created by samran2000 on 3/26/2024 in #❓┊help
make export file download when we run queue:work command and csv file is generated
I have written all the code. The code is generating the right csv file. i want to download it whenever i run queue:work command
4 replies