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