Added deposit page

This commit is contained in:
Pinga 2023-11-14 12:26:36 +02:00
parent fa5600bddd
commit 0439463a30
3 changed files with 115 additions and 34 deletions

View file

@ -64,7 +64,7 @@ $app->group('', function ($route) {
$route->get('/reports', ReportsController::class .':view')->setName('reports');
$route->get('/pricing', FinancialsController::class .':pricing')->setName('pricing');
$route->get('/deposit', FinancialsController::class .':deposit')->setName('deposit');
$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');