19 lines
182 B
PHP
19 lines
182 B
PHP
<?php
|
|
|
|
if(!function_exists('get_pengguna')){
|
|
function get_pengguna(){
|
|
|
|
DB::table('tbl_pengguna')->get();
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
?>
|