laravel console warning code example
Example 1: how to log object laravel logger
use Illuminate\Support\Facades\Log;
Log::info(json_encode($user);
Example 2: artisan make command
php artisan make:command CommandName
use Illuminate\Support\Facades\Log;
Log::info(json_encode($user);
php artisan make:command CommandName