laravel.log is a file that contains logs from various actions in laravel framework. This file is usually located in <your project directory>/storage/logs/
To clear laravel.log you could use the below methods easily.
Method #1
truncate -s 0 storage/logs/laravel.log
Method #2
echo "" > storage/logs/laravel.log