forked from Chiefsoft/TaborgMain
12 lines
256 B
PHP
12 lines
256 B
PHP
<?php
|
|
|
|
use CodeIgniter\Router\RouteCollection;
|
|
|
|
/**
|
|
* @var RouteCollection $routes
|
|
*/
|
|
$routes->get('/', 'Home::index');
|
|
$routes->get('/portfolio', 'Portfolio::index');
|
|
$routes->get('/about', 'about::index');
|
|
$routes->get('/services', 'Services::index');
|