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')
])
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')
])



Solution