return redirect with api in laravel controller code example
Example 1: Redirect::route('profile') and with() in laravel
// For a route with the following URI: profile/{id}
return redirect()->route('profile', ['id' => 1]);
Example 2: laravel return response view
return response()->view('your_view', compact('variableName'));