donnykurnia

Untitled

May 13th, 2017
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. ...
  3. public function getanggota($no_kk){
  4. $kk = detail_kartukeluarga::where('no_kk', $no_kk)->first();
  5. if ($kk) {
  6. return response()->json($kk->detail); // tapi detail harus relasi hasMany, bukan hasOne
  7. }
  8. return response()->json(collect(['pesan' => 'tidak ada data']));
  9. }
  10. ...
Advertisement
Add Comment
Please, Sign In to add comment