Mohamed Ayaou
Mohamed Ayaou
FFilament
Created by Haydra on 4/20/2025 in #❓┊help
database notification change table and body
but you will face breaking changes issue
15 replies
FFilament
Created by Haydra on 4/20/2025 in #❓┊help
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
FFilament
Created by Haydra on 4/20/2025 in #❓┊help
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
FFilament
Created by Florian on 4/20/2025 in #❓┊help
hey there i found out there is a possibility to add a image to a view page
18 replies
FFilament
Created by nighty on 4/15/2025 in #❓┊help
FileUpload Preview (Image Height/Width or Zoom) possible?
or even a custom CSS might be enough
5 replies
FFilament
Created by nighty on 4/15/2025 in #❓┊help
FileUpload Preview (Image Height/Width or Zoom) possible?
the filament fileupload is a wrapper for filepond.js so you might see if it has this ability and then target your form element with a custom js to customize it
5 replies
FFilament
Created by nighty on 4/15/2025 in #❓┊help
FileUpload Preview (Image Height/Width or Zoom) possible?
You can adjust the FileUpload field layout itself with ->panelAspectRatio('ASPECT_RATION_HERE')
5 replies
FFilament
Created by Rizal Abul Fata on 4/9/2025 in #❓┊help
Filament Import Excel XLSX
I think the plugin specific question should be posted on the plugin channel #eightynine-excel-import where the author "should" be
3 replies
FFilament
Created by aldec on 4/9/2025 in #❓┊help
Default values not applied in dynamically created form
There's always renders on each LW server request, but this is Livewire specific question, just search about this behavior
9 replies
FFilament
Created by aldec on 4/9/2025 in #❓┊help
Default values not applied in dynamically created form
Yeah, the ->default() method is static and works only on the first render I think, you have to use a full dynamic option to mutate the fields after form creation
9 replies
FFilament
Created by Yuka さん on 4/3/2025 in #❓┊help
Persistent 419 CSRF Error on Livewire File Uploads behind Cloudflare Tunnel
just check the old posts in this channel related to 419 errors
4 replies
FFilament
Created by Yuka さん on 4/3/2025 in #❓┊help
Persistent 419 CSRF Error on Livewire File Uploads behind Cloudflare Tunnel
Not the best solution but remember that the error might have different reasons
4 replies
FFilament
Created by Yuka さん on 4/3/2025 in #❓┊help
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:
->withMiddleware(function (Middleware $middleware) {
$middleware->validateCsrfTokens(except: [
'livewire/*', // for fixing 419 code error
// ...
->withMiddleware(function (Middleware $middleware) {
$middleware->validateCsrfTokens(except: [
'livewire/*', // for fixing 419 code error
// ...
4 replies
FFilament
Created by pimmang on 4/2/2025 in #❓┊help
my filament file upload stuck at 100% like the picture i send
try php artisan about
14 replies
FFilament
Created by pimmang on 4/2/2025 in #❓┊help
my filament file upload stuck at 100% like the picture i send
which versions you are running on
14 replies
FFilament
Created by pimmang on 4/2/2025 in #❓┊help
my filament file upload stuck at 100% like the picture i send
ctrl+shift+r
14 replies
FFilament
Created by pimmang on 4/2/2025 in #❓┊help
my filament file upload stuck at 100% like the picture i send
clear browser caches as well
14 replies
FFilament
Created by anish on 4/2/2025 in #❓┊help
Issue on laravel filament file upload : when the length of filename is long
before uploading
5 replies
FFilament
Created by anish on 4/2/2025 in #❓┊help
Issue on laravel filament file upload : when the length of filename is long
Can't confirm more details about each system but you should normally limit the filenames length.
5 replies
FFilament
Created by anish on 4/2/2025 in #❓┊help
Issue on laravel filament file upload : when the length of filename is long
Some file systems and storage drivers impose a limit on the length of filenames.
5 replies