Answers for "laravel redirect to action"

PHP
1

laravel redirect action

use App\Http\Controllers\HomeController;

return redirect()->action([HomeController::class, 'index']);
Posted by: Guest on August-24-2021
1

Redirect::route('profile') and with() in laravel

// For a route with the following URI: profile/{id}

return redirect()->route('profile', [$user]);
Posted by: Guest on May-30-2020
0

Redirect::route('profile') and with() in laravel

// For a route with the following URI: profile/{id}

return redirect()->route('profile', [$user]);
Posted by: Guest on May-30-2020

Code answers related to "laravel redirect to action"

Browse Popular Code Answers by Language