Added invoices page

This commit is contained in:
Pinga 2023-11-17 01:10:10 +02:00
parent ac61a4c3ad
commit 94053d17ca
8 changed files with 181 additions and 130 deletions

View file

@ -67,7 +67,7 @@ $app->group('', function ($route) {
$route->get('/log', LogsController::class .':log')->setName('log');
$route->get('/reports', ReportsController::class .':view')->setName('reports');
$route->get('/pricing', FinancialsController::class .':pricing')->setName('pricing');
$route->get('/invoices', FinancialsController::class .':invoices')->setName('invoices');
$route->map(['GET', 'POST'], '/deposit', FinancialsController::class .':deposit')->setName('deposit');
$route->get('/transactions', FinancialsController::class .':transactions')->setName('transactions');
$route->get('/overview', FinancialsController::class .':overview')->setName('overview');