Answers for "what is the use of storage folder in laravel"

PHP
1

laravel storage folder permissions

cd [..LARAVEL PROJECT ROOT]
sudo find . -type f -exec chmod 644 {} \;
sudo find . -type d -exec chmod 755 {} \;
sudo chmod -R 777 ./storage
sudo chmod -R 777 ./bootstrap/cache/
Posted by: Guest on July-20-2020
0

laravel get path to storage folder

$path = storage_path('app/file.txt');
Posted by: Guest on October-17-2020

Code answers related to "what is the use of storage folder in laravel"

Browse Popular Code Answers by Language