Files
JohnBullVanRental/app/Config/Routes.php
T
CHIEFSOFT\ameye 63919bcbb5 booking
2024-09-22 13:30:52 -04:00

13 lines
291 B
PHP

<?php
use CodeIgniter\Router\RouteCollection;
/**
* @var RouteCollection $routes
*/
$routes->get('/', 'Home::index');
$routes->get('/about', 'Home::about');
$routes->get('/contact', 'Home::contact');
$routes->get('/book', 'Home::book');
$routes->get('/our-service', 'Home::ourService');