Laravel 11.9 Released With New Features And Updates
Laravel 11.9 released with new default exception page, Prohibitable trait to prevent destructive commands, and withoutDelay() method for queues.
This week, the Laravel team released v11.9, which includes a new default exception page, a way to prevent destructive commands from running, a withoutDelay() queue method, and more. #New Default Exception Page Laravel now ships with a minimal default exception page when your application is in debug mode. The updated error page has light and dark mode support: New default exception page in Laravel 11.9 (dark mode) The Exception page will continue to render the default Symfony view (unless you've defined a custom renderer) when debug is false: Exception page when APP_DEBUG=false T...