Image Load not ending

I can’t understand why the downloaded file is not displayed in the admin panel when downloading the file, initially it is downloaded, the image is shown when you click on the save button, the download does not finish and the thumbnail of the downloaded file is not displayed in the list, a name is generated and the file is saved in the storage.

I have: APP_ENV=local
I was created storage with: php artisan storage link
My form :

Section::make()
->schema([
FileUpload::make('thumbnail'),
Toggle::make('active'),
DateTimePicker::make('published_at')
->required(),
Select::make('categories')
->relationship('categories', 'title')
->required(),
]),

public static function table(Table $table): Table
{
return $table
->columns([
Tables\Columns\ImageColumn::make('thumbnail')
])
image.png
image.png
image.png
Solution
Sorry 😦 I change APP_URL=http://0.0.0.0 and it working, I read few times this post
Was this page helpful?