Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public static function getPendingtransaction_escalate()
  2. {
  3. $record_escalate = Escalate::where('mb_forms',"escalate")
  4. ->where('mb_fields',"to")
  5. ->join("members", "mb_parent_id","=","es_id")
  6. ->join("employees","uid","=","es_created_by")
  7. ->where("mb_employees_id",Session::get("employee_uid") )
  8. ->get();
  9.  
  10.  
  11. return $record_escalate;
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement