website/app/routes/home.php

8 lines
97 B
PHP
Raw Normal View History

2015-08-30 12:34:43 -04:00
<?php
$app->get('/home', function() use($app) {
$app->render('home.twig');
2015-08-30 12:34:43 -04:00
})->name('home');