Answer the question
In order to leave comments, you need to log in
Laravel 8 not displaying images. How to fix?
Using Laravel 8.x
Images successfully saved to storage/app/public/imagesLanguage/ directory
Using livewire
$url = $this->image->store('imagesLanguage', 'public');
'default' => env('FILESYSTEM_DRIVER', 'local'),
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
],
'links' => [
public_path('storage') => storage_path('app/public'),
],
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question