From 9130b8274b2964ca0fc5f1a02218c3bd45bf3ece Mon Sep 17 00:00:00 2001 From: farid Date: Tue, 1 Jun 2021 22:35:44 +0430 Subject: [PATCH] feat: add mew file storage --- config/filesystems.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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' ],