mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-20 17:46:03 +02:00
Added reports page
This commit is contained in:
parent
3556f8c1fc
commit
512de0552a
5 changed files with 165 additions and 3 deletions
16
cp/app/Controllers/ReportsController.php
Normal file
16
cp/app/Controllers/ReportsController.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace App\Controllers;
|
||||
|
||||
use App\Models\RegistryTransaction;
|
||||
use Psr\Http\Message\ResponseInterface as Response;
|
||||
use Psr\Http\Message\ServerRequestInterface as Request;
|
||||
use Psr\Container\ContainerInterface;
|
||||
|
||||
class ReportsController extends Controller
|
||||
{
|
||||
public function view(Request $request, Response $response)
|
||||
{
|
||||
return view($response,'admin/reports/index.twig');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue