add `links` option to filesystems config
https://github.com/laravel/framework/pull/31355
This commit is contained in:
parent
eb3143ea72
commit
153746c2c1
|
@ -66,4 +66,19 @@
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| 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'),
|
||||||
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue