Change public path

This is one of multiple public path edits. For simplified usability, I am integrating the public Laravel directory into the root directory. 

For this, I am changing every instance of 'public_path' to 'base_path' and will use this format in future changes as well.
This commit is contained in:
JulianPrieber 2022-02-14 12:52:24 +01:00 committed by GitHub
parent ca328898f0
commit dc4ab42663
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ return [
*/
'links' => [
public_path('storage') => storage_path('app/public'),
base_path('storage') => storage_path('app/public'),
],
];