Answers for "laravel return redirect with variable"

C#
1

laravel response redirect

#Method 1 with route name
return redirect()->route('login');

#Method 2 back with input
return back()->withInput();

#Method 2 using a url
return redirect('/home/dashboard');
Posted by: Guest on August-25-2021
2

laravel return redirect to named route

return redirect()->route('login');
Posted by: Guest on January-30-2021
0

Passing values to blade using redirect() and back() functions

return redirect()->back()->with([
       'fee' => $fee, 
       'vat' => $vat, 
       'Transaction_vat' => $Transaction_vat
]);
Posted by: Guest on October-09-2021

Code answers related to "laravel return redirect with variable"

C# Answers by Framework

Browse Popular Code Answers by Language