images not showing using spatie media library in filamentphp

Viewed 67

I am having trouble displaying the images uploaded using spatie media library with the filament admin panel.

image for clarificatio

This is the code for form schema :

SpatieMediaLibraryFileUpload::make('thumbnail')->collection('posts')

And this is the code for table columns

SpatieMediaLibraryImageColumn::make('thumbnail')->collection('posts')

Thanks.

2 Answers

Check your APP_URL and take care of the correct port.

You should use:

php artisan storage:link
Related