Show Laravel today's logs from the daily channel in the terminal
This is a quick tip to show how to tail the current Laravel daily log file in the terminal. Laravel daily log files are stored in the storage/logs
directory. The log file name is laravel-YYYY-MM-DD.log
.
tail -f storage/logs/laravel-`date +%Y-%m-%d.log`