Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- ...
- public function getanggota($no_kk){
- $kk = detail_kartukeluarga::where('no_kk', $no_kk)->first();
- if ($kk) {
- return response()->json($kk->detail); // tapi detail harus relasi hasMany, bukan hasOne
- }
- return response()->json(collect(['pesan' => 'tidak ada data']));
- }
- ...
Advertisement
Add Comment
Please, Sign In to add comment