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.
16 lines
426 B
PHP
16 lines
426 B
PHP
<!-- https://leafphp.dev/docs/routing/ -->
|
|
<?php
|
|
|
|
// 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']);
|