Update category overview to be multi-currency aware.

This commit is contained in:
James Cole
2025-08-15 07:44:14 +02:00
parent fc9ef290f1
commit 844b8d48c4
5 changed files with 71 additions and 41 deletions

View File

@@ -128,7 +128,7 @@ Route::group(
'as' => 'api.v1.chart.budget.',
],
static function (): void {
Route::get('dashboard', ['uses' => 'BudgetController@dashboard', 'as' => 'dashboard']);
Route::get('overview', ['uses' => 'BudgetController@overview', 'as' => 'overview']);
}
);
@@ -139,7 +139,7 @@ Route::group(
'as' => 'api.v1.chart.category.',
],
static function (): void {
Route::get('dashboard', ['uses' => 'CategoryController@dashboard', 'as' => 'dashboard']);
Route::get('overview', ['uses' => 'CategoryController@overview', 'as' => 'overview']);
}
);