Laravel V11.37 Released With New Eloquent Relation Methods And More
Laravel v11.37 released with new Eloquent relation methods, ignore case option for Str::is(), Dumpable trait added to Uri instance, and more.
Last week the Laravel team released v11.37, which includes new Eloquent relation methods, an option to ignore case with Str::is(), adding the Dumpable trait to a Uri instance, and more. #Add Dumpable Trait to Uri Adrian Nürnberger added the Dumpable trait to the Uri class, which allows you to call dump() and dd() on a Uri instance. This allows you to dump at a certain point in the chain of your Uri instance, or dump and exit using dd(): #Add "Ignore Case" Option to Str::is() Steve Bauman contributed the ability to ignore case using the Str::is() method as well as a Stringable instance. This a...