From 251140ef8b2e283dec3025aa6a0cbfd6594c9dad Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 4 Jan 2017 12:09:43 -0600 Subject: [PATCH] use env var --- config/filesystems.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/filesystems.php b/config/filesystems.php index e1c4c953..9e1bfe43 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -51,6 +51,7 @@ 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), + 'url' => env('APP_URL').'/storage', 'visibility' => 'public', ],