how to redirect to route in laravel from javascript code example
Example 1: javascript redirect laravel route
window.location.href = "{{ route('show-all-prescription')}}";
Example 2: redirect to route laravel
Route::post('/user/profile', function () {
// Update the user's profile...
return redirect('/dashboard')->with('status', 'Profile updated!');
});