How to Redirecting to Controller Actions in Laravel ?
Answer / suresh kumar
Not only named route but we can also redirect to controller actions.
We need to simply pass the controller and name of the action to the action method as shown in the following example.
return redirect()->action(‘NameOfController@methodName’,[parameters]);
| Is This Answer Correct ? | 0 Yes | 0 No |
What is php artisan.
What are view composers?
What are laravel eloquent?
Do you know validations in laravel?
How install react js in laravel?
What is automatic injection in laravel?
Tell me in which language it was written?
How can I install laravel in windows?
How to Declaration of namespace ?
What is db facade?
What is kernel in laravel?
In laravel, what is fillable attribute in a model?