Vp
Separate panels
This is from docs
Since you have access to the current $panel, you can write conditional checks for separate panels. For example, only restricting access to the admin panel while allowing all users to access the other panels of your app:
6 replies
How to check if the created request is made through Filament?
Not sure how to check Filament in observer, but the easy solution would be check from API or Web.
Eg: In API call, just put
confirmed=false
and similarly from web as well.
Or you can customize data for Filament without using Observer10 replies
assertTableActionDataSet() on a form with FileUpload field
Try checking like this, but not sure it will works for you or not https://discord.com/channels/883083792112300104/1331765576812593273/1331834242342195353
6 replies
Disable 'Create' and 'Create & create another' buttons until all required fields are filled
Example on demo https://demo.filamentphp.com/shop/orders/create
6 replies
Disable 'Create' and 'Create & create another' buttons until all required fields are filled
I think you're using wizard in a wrong way, you shouldn't have
create
and create_another
button, you need to have next
and previous/cancel
and submit
at last step, follow this for more https://filamentphp.com/docs/3.x/panels/resources/creating-records#using-a-wizard6 replies