I have some route/model binding set up in my project for one of my models, and that works just fine. I'm able to use my binding in my route path and accept an instance of my model as a parameter to the relevant method in my controller.
Now I'm trying to do some work with this model, so I have created a method in my controller that accepts a Form Request so I can carry out some validation.
public function edit(EditBrandRequest $request, Brand $brand)
{
// ...
Each different instance of my model can be validated differently, so I need to be able to use an instance of the model in order to build a custom set of validation rules.
Is there a way of getting the instance of the model, that is injected into the controller from the Form Request?
I have tried type-hinting the model instance in the Form Request's constructor
class EditBrandRequest extends Request
{
public function __construct(Brand $brand)
{
dd($brand);
}
I have also tried type-hinting the model instance in the Form Request's rules()
method.
class EditBrandRequest extends Request
{
// ...
public function rules(Brand $brand)
{
dd($brand);
In both instances I am provided an empty/new instance of the model, rather than the instance I am expecting.
Of course, I could always get around this by not bothering with Form Requests and just generate the rules in the controller and validate manually - but I would rather do it the Laravel way if it's possible.
Thanks