Mohamed Ayaou
database notification change table and body
So, until you just add new columns then and not changing the default behavior you should be fine, just extend the Notifications classes with the needed methods as well as the views after pubishing them
15 replies
database notification change table and body
Changing the default filament notifications will probably result in a tons of errors, but depending on how huge the changes are you might only have to change the table using migrations normaly and override the Filament\Notifications\etc classes in the AppServiceProvider
e.g:
SomeNotificationClass::configureUsing(fn (SomeNotificationClass $action) => $notifcation->something());
15 replies
hey there i found out there is a possibility to add a image to a view page
It is just a View Infolist entry
https://filamentphp.com/docs/3.x/infolists/entries/custom
18 replies
Persistent 419 CSRF Error on Livewire File Uploads behind Cloudflare Tunnel
Happened to many people already in previous posts in this channel, the only solution worked for me (and suggested by a filament team member) is to disabled CSRF checking for livewire. in your
bootstrap/app.php
:
4 replies