You can not 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
527 B
26 lines
527 B
7 months ago
|
<?php
|
||
|
namespace App\Controllers\Kewilayahan;
|
||
|
|
||
|
use CodeIgniter\API\ResponseTrait;
|
||
|
use CodeIgniter\Controller;
|
||
|
|
||
|
class Monitoring extends Controller
|
||
|
{
|
||
|
|
||
|
use ResponseTrait;
|
||
|
|
||
|
public function index()
|
||
|
{
|
||
|
if (session('isLogin')) {
|
||
|
echo view('inc/head');
|
||
|
echo view('inc/navbar');
|
||
|
echo view('inc/sidebar');
|
||
|
echo view('kewilayahan/monitoring/monitoring');
|
||
|
echo view('inc/footer');
|
||
|
} else {
|
||
|
return redirect()->to('auth');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|