FIleUpload infinitely loading after "Create"
Hi, new to Filament and Laravel and doing a Laracasts course from Kevin McKee. Whenever I create a model which takes a FileUpload, it just infinitely loads after actually creating it. In the 'new' form, it works fine.
Using sqlite, not sure if this matters.
5 Replies
It is saved to storage/app/public
php artisan storage:link
makes no difference sadly
Figured it out. APP_URL env was set to http://localhost but I was using http://127.0.0.1:8000
Set
APP_URL=http://127.0.0.1:8000
and now it works as expected