Null Keso
Is there a way to use filament's table without passing any query, but only an array of data?
I think sorting on attribute will only work on simple attributes.
However the code for the model attribute requires a bit of comparison between sets of data then returns a score based on the comparison. It's not a simple attribute like fullname attribute where it's just concatenating first and last name.
15 replies
I need to create total of debits and credits without creating column for it
have you tried this one? this may fit to your use case
https://filamentphp.com/docs/3.x/tables/summaries#custom-summaries
10 replies
Customizing relation manager create behavior
Oh wait
https://filamentphp.com/docs/3.x/panels/resources/relation-managers#customizing-the-createaction
4 replies
Database Notification not being created
@S1efan thanks, I already did tis before but I sticked to the notification class.
Strangely enough the docs doesn't mention about the queue artisan command for cases where the queue driver is the database. While there are specific users out there that will mention: just read the docs
5 replies
Database Notification not being created
I managed to make this one working by creating a laravel notification class (use the artisan command)
Then changing the value in the via method from mail to database, and replacing the toMail method to toDatabase and return the sample filament notification in the docs.
5 replies
database notification
@shissaaa I've encountered this issue and I have to create a Laravel notification class then I changed the via from mail to database and add or replace the toMail to toDatabase method and return a Filament Notification
37 replies