mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-25 03:48:24 +02:00
Added invoice view
This commit is contained in:
parent
5bdb5c2a65
commit
93f1a06a40
5 changed files with 184 additions and 1 deletions
|
@ -81,6 +81,7 @@ $app->group('', function ($route) {
|
|||
$route->get('/reports', ReportsController::class .':view')->setName('reports');
|
||||
|
||||
$route->get('/invoices', FinancialsController::class .':invoices')->setName('invoices');
|
||||
$route->get('/invoice/{invoice}', FinancialsController::class . ':viewInvoice')->setName('viewInvoice');
|
||||
$route->map(['GET', 'POST'], '/deposit', FinancialsController::class .':deposit')->setName('deposit');
|
||||
$route->map(['GET', 'POST'], '/create-payment', FinancialsController::class .':createPayment')->setName('createPayment');
|
||||
$route->map(['GET', 'POST'], '/payment-success', FinancialsController::class .':success')->setName('success');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue