Last active
October 30, 2021 08:40
-
-
Save gopalindians/8741c36bd96655d4122d540b4a5939c5 to your computer and use it in GitHub Desktop.
filesystems.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
/* | |
|-------------------------------------------------------------------------- | |
| Symbolic Links | |
|-------------------------------------------------------------------------- | |
| | |
| Here you may configure the symbolic links that will be created when the | |
| `storage:link` Artisan command is executed. The array keys should be | |
| the locations of the links and the values should be their targets. | |
| | |
*/ | |
'links' => [ | |
// public_path('storage') => storage_path('app/public'), // Update the line and replace with below line | |
base_path('../public_html/storage') => storage_path('app/public'), | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment