sibanu_web/app/Helpers.php
2022-08-20 13:21:23 +07:00

19 lines
182 B
PHP

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