fixed storage path

This commit is contained in:
2025-12-05 21:12:54 +01:00
parent e4b84e6575
commit 821ad2a945

View File

@@ -38,7 +38,7 @@ return [
'public' => [
'driver' => 'local',
'root' => public_path('storage'),
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
@@ -70,7 +70,7 @@ return [
*/
'links' => [
public_path('storage') => public_path('storage'),
public_path('storage') => storage_path('app/public'),
],
];