Advertisement
setiadi

validasi upline_id

Nov 28th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. // validasi upline id harus valid
  2.         if($input['upline_id']!=""){
  3.             $findUplineId = \DB::table('mlm_member')->where('upline_id', $input['upline_id'])->first();
  4.             if($findUplineId == null){
  5.                 return \Response::json([
  6.                         "status" => "FAIL",
  7.                         "errorKey" => "Upline ID tidak terdaftar"
  8.                 ]);
  9.             }
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement