Level 3
Use this... php artisan storage:link
Here i have mentioned my code
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'visibility' => 'public',
],
How to change file upload path public/uploads to storage/app/public/uploads
Advance in thanks
Please or to participate in this conversation.