Introduce undocumented count endpoint.

This commit is contained in:
James Cole
2026-02-22 07:05:30 +01:00
parent 4ad2508675
commit 81f6f22efb
5 changed files with 176 additions and 24 deletions
+1
View File
@@ -699,6 +699,7 @@ Route::group(
],
static function (): void {
Route::get('transactions', ['uses' => 'TransactionController@search', 'as' => 'transactions']);
Route::get('transactions/count', ['uses' => 'TransactionController@count', 'as' => 'count']);
Route::get('accounts', ['uses' => 'AccountController@search', 'as' => 'accounts']);
}
);