1
0
Fork 0

config/filesystems.php: Add resources disk

This commit is contained in:
Henrik Hautakoski 2023-01-29 13:58:14 +01:00
parent c7ebc101c7
commit 1994f30f9e

View file

@ -35,6 +35,11 @@ return [
'root' => storage_path('app'),
],
'resources' => [
'driver' => 'local',
'root' => resource_path(),
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),