You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aNetwork-leaf/app/routes/_app.php

16 lines
420 B
PHP

<?php
// https://leafphp.dev/docs/routing/
// No logic return a 'view'
// app()->view('/', 'index');
// Route named index
app()->get('/', 'Home\Controller@index');
// app()->get('/', ['name' => 'index', function () {
// // Render the 'index'.blade.php from /views/
// response()->render('index',
// ['servers' => ['Minecraft','Factorio','Misc.']]
// );
// }]);
// response()->redirect(['index']);