set('title', 'مركز العماني - الرعاية الفاخرة'); $this->set('description', 'مركز العماني يقدم خدمات طبية وفاخرة على أعلى مستوى.'); $this->render('page/luxury'); } /** * About page */ public function about() { $this->set('title', 'من نحن - مركز العماني'); $this->render('page/about'); } /** * Services page */ public function services() { $this->set('title', 'خدماتنا - مركز العماني'); // TODO: fetch services from database $services = [ ['name' => 'استشارة طبية', 'icon' => 'stethoscope', 'description' => 'استشارة شاملة مع أطباء متخصصين'], ['name' => 'علاج طبيعي', 'icon' => 'spa', 'description' => 'برامج علاج طبيعي متقدمة'], ['name' => 'فحوصات شاملة', 'icon' => 'clipboard-list', 'description' => 'فحوصات دورية وشاملة'], ['name' => 'رعاية كبار السن', 'icon' => 'user-injury', 'description' => 'خدمات مخصصة لكبار السن'], ]; $this->set('services', $services); $this->render('page/services'); } /** * Therapists page */ public function therapists() { $this->set('title', 'فريقنا - مركز العماني'); // TODO: fetch therapists from database $therapists = [ ['name' => 'د. أحمد العلوي', 'specialty' => 'طب العائلة', 'image' => 'therapist1.jpg', 'bio' => 'خبرة 20 سنة في طب العائلة والرعاية الأولية.'], ['name' => 'د. ليła السعيد', 'specialty' => 'الجلدية', 'image' => 'therapist2.jpg', 'bio' => 'اختصاصية في الأمراض الجلدية والليزر التجميلي.'], ['name' => 'د. محمد الفارسي', 'specialty' => 'العلاج الطبيعي', 'image' => 'therapist3.jpg', 'bio' => 'متخصص في إعادة التأهيل والعلاج الرياضي.'], ]; $this->set('therapists', $therapists); $this->render('page/therapists'); } /** * Contact page */ public function contact() { $this->set('title', 'اتصل بنا - مركز العماني'); $this->render('page/contact'); } /** * Booking wizard start */ public function booking() { $this->set('title', 'حجز موعد - مركز العماني'); $this->render('page/booking'); }}