2 Answer
It must be the permission error. Check the ownership and permissions for laravel.log file.
sudo chown -R www-data:www-data /path/to/your/laravel/root/directory sudo usermod -a -G www-data ubuntu sudo find /path/to/your/laravel/root/directory -type f -exec chmod 644 {} \; sudo find /path/to/your/laravel/root/directory -type d -exec chmod 755 {} \;
sudo chgrp -R www-data storage bootstrap/cache sudo chmod -R ug+rwx storage bootstrap/cache
Your Answer
x