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.
29 lines
661 B
29 lines
661 B
<?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/peta'); |
|
} |
|
|
|
}
|
|
|