Brian Kidd
Action button
I’d consider this plugin: https://filamentphp.com/plugins/awcodes-table-repeater
3 replies
Open a second require confirmation modal from the first require confirmation modal
Have a look here: https://filamentphp.com/docs/3.x/actions/adding-an-action-to-a-livewire-component#chaining-actions
3 replies
Is it Possible to Open a Modal within Another Modal in Laravel Filament?
Did you read through this section? https://filamentphp.com/docs/3.x/actions/modals#opening-another-modal-from-an-extra-footer-action
3 replies
Show Filament notification when database notification is received
I think you need to check broadcasting notifications: https://filamentphp.com/docs/3.x/notifications/broadcast-notifications
5 replies
Query scoping
One way would be alter the query and define the fields from the pipe model that you want included. There may be a simpler way in filament but this is a way to do it with Eloquent: https://laravel.com/docs/11.x/eloquent-relationships#eager-loading-specific-columns
6 replies
Sorting a custom attribute
There may be a way to do this using Filament functionality but I would probably just add a scope to the model that counts the relationship and cast it to a boolean. Filament is performing the sort on the query builder.
3 replies
Searching in a table on a column using a polymorphic relationship
Check this section of the Laravel docs and see if this helps: https://laravel.com/docs/10.x/eloquent-relationships#querying-morph-to-relationships
6 replies