mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-22 10:36:03 +02:00
Added Transactions page
This commit is contained in:
parent
9669f78e4f
commit
c9636114d8
5 changed files with 186 additions and 28 deletions
15
cp/app/Controllers/FinancialsController.php
Normal file
15
cp/app/Controllers/FinancialsController.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace App\Controllers;
|
||||
|
||||
use Psr\Http\Message\ResponseInterface as Response;
|
||||
use Psr\Http\Message\ServerRequestInterface as Request;
|
||||
use Psr\Container\ContainerInterface;
|
||||
|
||||
class FinancialsController extends Controller
|
||||
{
|
||||
public function transactions(Request $request, Response $response)
|
||||
{
|
||||
return view($response,'admin/financials/transactions.twig');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue