AltoRouter
AltoRouter copied to clipboard
How to route the following /Controllers/Users/show.php
Assuming I have the following app directory
App -> Controllers -> User -> show.php
I want to map it like this:
$router->get('/', 'index.php');
$router->get('/about', 'about.php');
$router->get('/contact', 'contact.php');
$router->get('/notes', 'notes/index.php')->only('auth');
$router->get('/note', 'notes/show.php');
$router->delete('/note', 'notes/destroy.php');