get the current time in carbon code example
Example 1: get current date laravel
use Carbon\Carbon;
$date = Carbon::now();
Example 2: laravel carbon today date format
$today = Carbon::now()->format('Y-m-d'); //yyyy-mm-dd etc
use Carbon\Carbon;
$date = Carbon::now();
$today = Carbon::now()->format('Y-m-d'); //yyyy-mm-dd etc