Hey Laravel Developers
Starting with Laravel v11.38.0, we can now customize the validation rules for "Email" similarly to how we have them with the "Password" rule using fluent method chaining.
This approach of chaining on methods over using strings leads to less typos and also brings more opportunity for customization in the future like configuration of defaults.
Here is an example of before and after you use the fluent Email class for validation.
Back