mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-25 11:58:19 +02:00
Further improvements to deposit and registrar pages
This commit is contained in:
parent
c4b69480d9
commit
97f0c1db88
3 changed files with 85 additions and 105 deletions
|
@ -12,19 +12,24 @@ class FinancialsController extends Controller
|
|||
{
|
||||
return view($response,'admin/financials/transactions.twig');
|
||||
}
|
||||
|
||||
|
||||
public function overview(Request $request, Response $response)
|
||||
{
|
||||
return view($response,'admin/financials/overview.twig');
|
||||
}
|
||||
|
||||
|
||||
public function pricing(Request $request, Response $response)
|
||||
{
|
||||
return view($response,'admin/financials/pricing.twig');
|
||||
}
|
||||
|
||||
|
||||
public function deposit(Request $request, Response $response)
|
||||
{
|
||||
return view($response,'admin/financials/deposit.twig');
|
||||
$db = $this->container->get('db');
|
||||
$registrars = $db->select("SELECT id, clid, name FROM registrar");
|
||||
|
||||
return view($response,'admin/financials/deposit.twig', [
|
||||
'registrars' => $registrars
|
||||
]);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue