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/teamtable/index.php

10 lines
252 B
PHP
Raw Normal View History

2022-02-07 11:09:16 +01:00
<?php
$app = require '../../app/inc.php';
$model = $app->model('Teamtable');
2022-03-07 07:13:17 +01:00
$teams = $model->getAll();
2022-02-28 05:51:22 +01:00
2022-02-07 11:09:16 +01:00
$app->view('template/header', ['title' => 'Lagtabell']);
2022-02-28 05:51:22 +01:00
$app->view('pages/teamtable/index', ["teams" => $teams]);
2022-02-07 11:09:16 +01:00
$app->view('template/footer');