Laravel V11.12 Released With New Features And Fixes
Laravel v11.12 released with multiply collection method, automatic .php extension chopping in make commands & more.
This week, the Laravel team released v11.12, which includes a multiply collection method, automatically chopping the .php extension in make commands, and more. #Chop PHP Extension When Passed to make Commands (v11.11.1) Jason McCreary contributed a nice DX feature when passing .php to make:* commands for generating files for things like controllers, events, commands, etc. Nothing changes except that Laravel now handles the .php extension behind the scenes: php artisan make:controller UserController.php# Before - app/Http/Controllers/UserController.php.php# After - app/Http/Controllers/UserCont...