website/app/routes/home.php

8 lines
98 B
PHP
Executable File

<?php
$app->get('/home', function() use($app) {
$app->render('home.php');
})->name('home');