Added deposit UI

This commit is contained in:
Pinga 2023-09-05 01:35:31 +03:00
parent 92767a834c
commit fc72a57bdd
4 changed files with 156 additions and 2 deletions

View file

@ -56,6 +56,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->get('/transactions', FinancialsController::class .':transactions')->setName('transactions');
$route->get('/overview', FinancialsController::class .':overview')->setName('overview');