samran2000
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
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
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
Sending data to controller
yes
For Creation read this:- https://filamentphp.com/docs/3.x/panels/resources/creating-records
For Update/edit read this:- https://filamentphp.com/docs/3.x/panels/resources/editing-records
5 replies
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