Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. public function getProjects($status = false, $position = false)
  2. {
  3.         if ($status) {
  4.             $this->model->where('status', $status);
  5.         }
  6.  
  7.         if($position) {
  8.              $this->model->where('position', $position);
  9.         }
  10.  
  11.         return $this->model->get();
  12.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement