router icon indicating copy to clipboard operation
router copied to clipboard

How to do the following

Open ErikThiart opened this issue 1 year ago • 4 comments

$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');

CleanShot 2023-10-05 at 11  54 03

ErikThiart avatar Oct 05 '23 09:10 ErikThiart