1use Carbon\Carbon;
2// Date = 7th of July 2021
3$month = Carbon::now()->format('M'); // July
4$month = Carbon::now()->format('m'); // 07
5$month = Carbon::now()->month; // 7
1Adding in the AppServiceProvider
2
3public function boot()
4{
5 // Configuración para fechas en español
6 Carbon::setUTF8(true);
7 Carbon::setLocale(config('app.locale'));
8 setlocale(LC_ALL, 'es_MX', 'es', 'ES', 'es_MX.utf8');
9
10}
11
12Ejemplo:
13Carbon::parse($start_date)->formatLocalized('%B')