I'm pretty new to Laravel, coming from the Rails world.
In Rails validations are placed on the model. For example:
class User < ApplicationRecord
validates :email, presence: true
end
This ensures that no matter how a User is created/edited (HTTP or otherwise) it always has an email.
Is there an equivalent pattern in Laravel?