Laravel 11.1 Released With New Features And Updates
Laravel 11.1 released with new features: withSchedule bootstrap method, non-backed Enums in query builder, SES list management options & more! Check the complete release notes for details.
This week, the Laravel team released v11.1 with a withSchedule bootstrap method, non-backed Enums in query builder, SES list management options, and more. Laravel 11.1 is the first minor version release since the GA of Laravel 11, released earlier this month.
#Add withSchedule to Application Bootstrap
Nuno Maduro contributed a withSchedule method to the bootstrap/app.php file:
->withSchedule(function ($schedule) { $schedule->command('backup:database')->daily();})
#List management options added to SES Mail Transport
Ariful Alam contributed the ability to use SES's subscription management fea...