Answers for "return redirect back with data laravel"

C#
5

laravel redirect back with input

// Laravel 5
return redirect()->back()->withInput();
// Laravel 6,7, 8
return back()->withInput();
Posted by: Guest on September-05-2021
5

laravel redirect back

return Redirect::back()->withErrors(['msg', 'The Message']);

and inside your view call this

@if($errors->any())
<h4>{{$errors->first()}}</h4>
@endif
Posted by: Guest on August-20-2020
0

redirect back with input laravel in request

// class ExampleRequest 
public function response(array $errors): RedirectResponse
{
  return Redirect::back()->withErrors($errors)->withInput();
}
Posted by: Guest on October-19-2021
0

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

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

Code answers related to "return redirect back with data laravel"

C# Answers by Framework

Browse Popular Code Answers by Language