Tailing Log Messages Using Pail
If you may need real time logs in your application then with "pail" you will get the real time logs in it.
You can monitor your logs with specific types logs you need to see.
How to use?
php artisan pail
From here you will get the list of the logs from here.
How to Filtering Logs?
--filter : Specific filter on Exception
For example,
php artisan pail --filter="QueryException"
--message : On message you can also filter the logs
php artisan pail --message="User created"
--user : On user specific if you have logs then you will be able to get the logs as well
php artisan pail --user=1
--level : On level of error you can debug and see the magic in the teminal
php artisan pail --level=error