Show one month at a time, and change month with calendar and buttons
This commit is contained in:
@ -10,7 +10,8 @@ class Cuentas {
|
||||
return $view->render($response, 'cuentas.list');
|
||||
}
|
||||
public function show(Request $request, Response $response, View $view, $cuenta_id): Response {
|
||||
return $view->render($response, 'cuentas.show', compact('cuenta_id'));
|
||||
$max_transacciones = 100;
|
||||
return $view->render($response, 'cuentas.show', compact('cuenta_id', 'max_transacciones'));
|
||||
}
|
||||
public function add(Request $request, Response $response, View $view): Response {
|
||||
return $view->render($response, 'cuentas.add');
|
||||
|
Reference in New Issue
Block a user