This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/public/race/configure/teams/index.php
2022-03-30 19:11:34 +00:00

11 lines
328 B
PHP

<?php $app = require '../../../../app/inc.php';
use App\Teamtable\TeamMapper;
$teamMapper = new TeamMapper($app->database->conn);
$teams = $teamMapper->getAll();
$app->view('template/header', ['title' => 'Endre lagtabell']);
$app->view('pages/race/configure/teams/index', ["teams" => $teams]);
$app->view('template/footer');