1.

How to redirect form controller to view file in laravel?

Answer»

We can use
RETURN REDIRECT('/')->withErrors('You can TYPE your MESSAGE here');
return redirect('/')->with('variableName', 'You can type your message here');
return redirect('/')->route('PutRouteNameHere');



Discussion

No Comment Found