fix bad local storage url

This commit is contained in:
2023-09-29 11:01:37 +10:00
parent b60a3601cb
commit f6df068787

View File

@@ -33,7 +33,7 @@ return [
'local' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL') . "/storage",
'url' => env('APP_URL') . "/storage/{name}",
'public' => true,
'throw' => false,
],