Answers for "print logs laravel termial"

PHP
12

laravel log

use IlluminateSupportFacadesLog;

Log::emergency($message);
Log::alert($message);
Log::critical($message);
Log::error($message);
Log::warning($message);
Log::notice($message);
Log::info($message);
Log::debug($message);
Posted by: Guest on June-30-2020
0

laravel cmd command to watch logs

tail -f storage/logs/laravel.log & php artisan serve
Posted by: Guest on November-15-2021

Browse Popular Code Answers by Language