Answers for "$petani = DB::table('tbl_user')->pluck('id_user', 'username', 'alamat', 'no_telp', 'id_lokasi'); return view('listpetani', ['petani' => $petani]);"

PHP
0

$petani = DB::table('tbl_user')->pluck('id_user', 'username', 'alamat', 'no_telp', 'id_lokasi'); return view('listpetani', ['petani' => $petani]);

foreach ($users as $user) {
    echo $user->name;
}
Posted by: Guest on January-27-2022
0

$petani = DB::table('tbl_user')->pluck('id_user', 'username', 'alamat', 'no_telp', 'id_lokasi'); return view('listpetani', ['petani' => $petani]);

foreach ($users as $user) {
    echo $user->name;
}ggggg
Posted by: Guest on January-27-2022

Code answers related to "$petani = DB::table('tbl_user')->pluck('id_user', 'username', 'alamat', 'no_telp', 'id_lokasi'); return view('listpetani', ['petani' => $petani]);"

Browse Popular Code Answers by Language