carbon current month end date 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: get start of month end of month carbon
$now = Carbon::now();
$startOfMonth = $now->startOfMonth('Y-m-d');
$endOfMonth = $now->endOfMonth()->format('Y-m-d');