🎨 feat(notification): add private disk for PDF uploads and update download route with signed URL.

This commit is contained in:
fsociety
2024-10-25 20:06:19 +02:00
parent 603eed4c46
commit 3055bfa196
4 changed files with 34 additions and 14 deletions

View File

@@ -36,10 +36,16 @@ return [
'throw' => false,
],
'private' => [
'driver' => 'local',
'root' => storage_path('app/private'),
'throw' => false,
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'url' => env('APP_URL') . '/storage',
'visibility' => 'public',
'throw' => false,
],