laravel-actions icon indicating copy to clipboard operation
laravel-actions copied to clipboard

Use FormRequest methods in asController method

Open florentsorel opened this issue 2 years ago • 1 comments

Hi,

I would like to use some method from FormRequest object like safe, validated but the asController method need a Request object and the method safe doesn't exists inside this object and I prefer to avoid the use of except method.

It's possible to handle this?

florentsorel avatar May 09 '22 08:05 florentsorel

Isn't this solved by using Lorisleiva\Actions\ActionRequest?

public function asController(ActionRequest $request) {...}

https://laravelactions.com/2.x/add-validation-to-controllers.html#add-validation-to-your-controllers

tommica avatar Jul 25 '22 09:07 tommica