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.
30 lines
667 B
30 lines
667 B
7 months ago
|
<?php
|
||
|
namespace App\Controllers\Kewilayahan;
|
||
|
|
||
|
use CodeIgniter\API\ResponseTrait;
|
||
|
use CodeIgniter\Controller;
|
||
|
|
||
|
class Peta extends Controller
|
||
|
{
|
||
|
|
||
|
use ResponseTrait;
|
||
|
|
||
|
public function index()
|
||
|
{
|
||
|
// $db = \Config\Database::connect();
|
||
|
// $data = [];
|
||
|
// if (session('isLogin')) {
|
||
|
// echo view('inc/head');
|
||
|
// echo view('inc/navbar');
|
||
|
// echo view('inc/sidebar');
|
||
|
// echo view('kewilayahan/kytp/kpdl', $data);
|
||
|
// echo view('inc/footer');
|
||
|
// } else {
|
||
|
// return redirect()->to('auth');
|
||
|
// }
|
||
|
|
||
|
return view('kewilayahan/peta/index.html');
|
||
|
}
|
||
|
|
||
|
}
|