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