carbon get date only code example
Example 1: carbon get today's month
use Carbon\Carbon;
// if today is January 22, 2021
Carbon::now()->format('M'); // "Jan"
Carbon::now()->format('m'); // "01"
Carbon::now()->month; // 1
Example 2: php carbon get timestamp
Carbon::now()->timestamp