Get very first week day of a new month in carbon php
one text
Solution:
If you're trying to get First Date of Every Next Month, you can try this:
now()->addMonthNoOverflow(1)->firstOfMonth()->dayName;
Sourceone text
If you're trying to get First Date of Every Next Month, you can try this:
now()->addMonthNoOverflow(1)->firstOfMonth()->dayName;
Source