model->newQuery(); if (!empty($params['name'])) { $query->where('name', 'like', '%' . $params['name'] . '%'); } if (isset($params['status'])) { $query->where('status', $params['status']); } return $query->paginate($params['per_page'] ?? 15); } }