Laravel 10.15 Released
July 11th, 2023
Via:
Laravel News
This week, the Laravel team released version 10.15.0. Here are the highlights:
- Add toRawSql, dumpRawSql, and ddRawSql to query builders in #47507
User::where('email', 'julian@krodox.com')->toRawSql();
//select * from `users` where `email` = 'julian@krodox.com'
-
Add Collection::wrap to add method on BatchFake in #47589
-
Sub-minute scheduling in #47279
-
Add inline attachments support for "notifications" markdown mailables in #47643
-
Add assertions for counting outgoing mailables in #47655
-
Add getRawQueryLog to DB in #47623
-
Add isUrl to Str in #47688
-
Make Vite throw a new ManifestNotFoundException in #47681
-
Dispatch model pruning started and ended events in #47669
-
Update DatabaseRule to handle enums for simple WHERE clause in #47679
-
Add data_remove helper in #47618
-
Allow HTTP exceptions to be thrown from views in #47714