config/filesystems.php: Add resources disk
This commit is contained in:
parent
c7ebc101c7
commit
1994f30f9e
1 changed files with 5 additions and 0 deletions
|
|
@ -35,6 +35,11 @@ return [
|
||||||
'root' => storage_path('app'),
|
'root' => storage_path('app'),
|
||||||
],
|
],
|
||||||
|
|
||||||
|
'resources' => [
|
||||||
|
'driver' => 'local',
|
||||||
|
'root' => resource_path(),
|
||||||
|
],
|
||||||
|
|
||||||
'public' => [
|
'public' => [
|
||||||
'driver' => 'local',
|
'driver' => 'local',
|
||||||
'root' => storage_path('app/public'),
|
'root' => storage_path('app/public'),
|
||||||
|
|
|
||||||
Reference in a new issue