@alqahtani ok, I did
php artisan config:clear
php artisan cache:clear
php artisan migrate:refresh
php artisan db:seed
php artisan storage:link
php artisan serve
In that order. No results.
And the links
:src="'/'+question.image"
:src="''+question.image"
:src="'/storage/'+question.image"
:src="'/storage/app'+question.image"
don't work.
My filesystems.php
...
'disks' => [
'links' => [
public_path('qImagess') => storage_path('app/qImagess'),
],
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
],
],
...