php - Laravel Forbidden You don't have permission to access /storage/ on this server
one text
Solution:
Try to run below command
sudo chmod -R 775 /storage
or
run these blow commands step by step
sudo chown -R $USER:www-data storage
sudo chown -R $USER:www-data bootstrap/cache
chmod -R 775 storage
chmod -R 775 bootstrap/cache
chmod -R 775 public
Source