From 153746c2c17b6199294ec97f4fea95ed34241c7b Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Wed, 5 Feb 2020 10:33:45 -0600 Subject: [PATCH] add `links` option to filesystems config https://github.com/laravel/framework/pull/31355 --- config/filesystems.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index ec6a7cec..cc5c9072 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -65,5 +65,20 @@ ], ], + + /* + |-------------------------------------------------------------------------- + | Symbolic Links + |-------------------------------------------------------------------------- + | + | Here you may configure as many symbolic links as you wish for your + | application. The key is the symbolic link and the value is the + | target path. Use the `storage:link` command to generate them. + | + */ + + 'links' => [ + public_path('storage') => storage_path('app/public'), + ], ];