diff --git a/app/Http/Controllers/Budget/ShowController.php b/app/Http/Controllers/Budget/ShowController.php index 87c59e756e..3d9d7f774d 100644 --- a/app/Http/Controllers/Budget/ShowController.php +++ b/app/Http/Controllers/Budget/ShowController.php @@ -131,7 +131,7 @@ class ShowController extends Controller $collector->setRange($start, $end)->setTypes([TransactionType::WITHDRAWAL])->setLimit($pageSize)->setPage($page) ->withoutBudget()->withAccountInformation()->withCategoryInformation(); $groups = $collector->getPaginatedGroups(); - $groups->setPath(route('budgets.no-budget')); + $groups->setPath(route('budgets.no-budget-all')); return view('budgets.no-budget', compact('groups', 'subTitle', 'start', 'end')); }