feat: FileController para servir archivos privados con autenticación

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-26 13:58:50 -06:00
parent e42fca3c5b
commit 9dd5ac6cbf
5 changed files with 40 additions and 8 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ return [
'uploads' => [
'driver' => 'local',
'root' => public_path('uploads'),
'root' => env('UPLOADS_DISK_ROOT', public_path('uploads')),
'url' => env('APP_URL').'/uploads',
'visibility' => 'public',
'throw' => false,