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.

26 lines
616 B
PHP

<?php
use NN\Module\View;
$route->add('/admin/username', function(){
View::render('setup/username');
})
->use('vendor/autoload.php')
->use('module/db.php')
->use('module/perusahaan.php')
->middleware('cekloginadmin');
$route->add('/admin/bb', function(){
View::render('setup/bb');
})
->use('vendor/autoload.php')
->use('module/db.php')
->use('module/perusahaan.php')
->middleware('cekloginadmin');
$route->add('/admin/tagihan', function(){
View::render('admin/tsimpan/tagihantes');
})
->use('vendor/autoload.php')
->use('module/db.php')
->use('module/perusahaan.php')
->middleware('cekloginadmin');