carbon current date time code example
Example 1: get current date carbon laravel
use Carbon\Carbon;
$date = Carbon::now();
//Get date and time
$date->toDateTimeString();
//Get date
$date->toDateString();
Example 2: current timestamp carbon
Carbon::now()->timestamp
Example 3: carbon now
Carbon::now();