mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Simplify bill overview.
This commit is contained in:
@@ -701,6 +701,16 @@ Route::group(
|
||||
}
|
||||
);
|
||||
|
||||
/**
|
||||
* Report Data Bill Controller
|
||||
*/
|
||||
Route::group(
|
||||
['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers\Report', 'prefix' => 'report-data/bill', 'as' => 'report-data.bills.'],
|
||||
static function () {
|
||||
Route::get('overview/{accountList}/{start_date}/{end_date}', ['uses' => 'BillController@overview', 'as' => 'overview']);
|
||||
}
|
||||
);
|
||||
|
||||
/**
|
||||
* Report Data Expense / Revenue Account Controller
|
||||
*/
|
||||
|
Reference in New Issue
Block a user