redirect to view laravel code example
Example 1: Redirect::route('profile') and with() in laravel
// For a route with the following URI: profile/{id}
return redirect()->route('profile', [$user]);
Example 2: laravel return response json
return response()->json([
'name' => 'Abigail',
'state' => 'CA',
]);
Example 3: Redirect::route('profile') and with() in laravel
// For a route with the following URI: profile/{id}
return redirect()->route('profile', ['id' => 1]);