diff --git a/config/filesystems.php b/config/filesystems.php index 433cc50..2bb66b2 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -68,7 +68,14 @@ return [ 'media_dev' => [ 'driver' => 'local', 'root' => public_path(), - 'url' => '', + 'url' => env('APP_URL').'/', + 'visibility' => 'public' + ], + + 'site' => [ + 'driver' => 'local', + 'root' => resource_path('views'), + 'url' => env('APP_URL').'/', 'visibility' => 'public' ],