Sanchit Patil
Error with FileUpload in Livewire nested component
async-alpine was causing this issue.
I have loaded this wrapper externally into my app layout file,
working perfectly after removing this.
https://github.com/Accudio/async-alpine
5 replies
Passing parameters to a custom page
are you getting this issue due to the custom page?
because I got this issue while trying to pass a parameter to the custom page URL.
first, i tried the way we do it with Livewire full-page component
php
this works but, the filament started showing the Admin panel's menu when I sent the parameter (the page is not associated with the admin panel).
so tried it in the getSlug function and accessed in the mount function and it worked.
8 replies
After form submission, data insertion is blocked due to an array issue related to marked checkboxes
what is your column's name?
you have added videos in the cast but using video_id in schema
it should be video_id in casts too. (assuming the column name is video_id & column type text or json)
7 replies
I wonder why this error occurs?
I resolved this error in my project with these steps,
1) Make sure your composer.json file has this filament version -> "filament/filament": "^3.0-stable",
now run the composer update, It might resolve the issue or else
2) Remove composer.lock & delete entire vendor directory
3) run composer install
10 replies