diff --git a/cp/app/Controllers/FinancialsController.php b/cp/app/Controllers/FinancialsController.php index 03285e7..b81db2c 100644 --- a/cp/app/Controllers/FinancialsController.php +++ b/cp/app/Controllers/FinancialsController.php @@ -22,4 +22,9 @@ class FinancialsController extends Controller { return view($response,'admin/financials/pricing.twig'); } + + public function deposit(Request $request, Response $response) + { + return view($response,'admin/financials/deposit.twig'); + } } \ No newline at end of file diff --git a/cp/resources/views/admin/financials/deposit.twig b/cp/resources/views/admin/financials/deposit.twig new file mode 100644 index 0000000..cfa74d8 --- /dev/null +++ b/cp/resources/views/admin/financials/deposit.twig @@ -0,0 +1,148 @@ +{% extends "layouts/app.twig" %} + +{% block title %}{{ __('Price Management') }}{% endblock %} + +{% block content %} +
+ + + +
+
+
+
+
+

Registrar Deposit

+ +
+
+
+ +
+ + +
+ + +
+
Current Funds for
+

$0.00

+
+ + +
+ + +
+ + +
+ + +
+ + + +
+
+
+
+ + +
+
+
+
+
+ + +{% endblock %} \ No newline at end of file diff --git a/cp/resources/views/layouts/app.twig b/cp/resources/views/layouts/app.twig index 4b6470a..636fd81 100644 --- a/cp/resources/views/layouts/app.twig +++ b/cp/resources/views/layouts/app.twig @@ -263,7 +263,7 @@ -
  • +
  • {{ __('Pricing') }} - + {{ __('Add Deposit') }} diff --git a/cp/routes/web.php b/cp/routes/web.php index e5b49d6..ec83f69 100644 --- a/cp/routes/web.php +++ b/cp/routes/web.php @@ -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');