where('is_active', 1)->findAll(); } /** * Get taxi records for a specific plan */ public function getTaxisByPlan($planId) { return $this->where('plan_id', $planId)->findAll(); } }