use App\Http\Controllers\UserController;
return redirect()->action([UserController::class, 'index']);
return redirect()->action(
[UserController::class, 'profile'], ['id' => 1]
);
Action ile normal route
arasındakı fark nedir ve action ne zaman kullanılmalı ?