diff --git a/lang/ar/home.php b/lang/ar/home.php index 5f29750..68a836c 100644 --- a/lang/ar/home.php +++ b/lang/ar/home.php @@ -15,27 +15,37 @@ return [ // Services Section 'services_title' => 'خدماتنا', 'services_subtitle' => 'حلول قانونية شاملة للأفراد والشركات', - 'services' => [ - 'consultations' => [ - 'icon' => 'chat-bubble-left-right', - 'title' => 'الاستشارات القانونية', - 'description' => 'استشارات قانونية متخصصة مصممة وفقاً لوضعك واحتياجاتك.', - ], - 'representation' => [ - 'icon' => 'scale', - 'title' => 'التمثيل أمام المحاكم', - 'description' => 'تمثيل احترافي أمام المحاكم والهيئات القضائية في جميع المراحل.', - ], - 'litigation' => [ - 'icon' => 'document-text', - 'title' => 'إدارة الدعاوى', - 'description' => 'إدارة كاملة للقضايا من اللوائح والمذكرات إلى الاستئنافات.', - ], - 'contracts' => [ - 'icon' => 'pencil-square', - 'title' => 'خدمات العقود', - 'description' => 'صياغة ومراجعة العقود والامتثال القانوني لجميع احتياجاتكم التعاقدية.', - ], + + 'service_consultation_title' => 'الاستشارات والتمثيل القانوني', + 'service_consultation_items' => [ + 'الاستشارات القانونية', + 'التمثيل أمام المحاكم', + 'إدارة التقاضي', + 'المذكرات والاستئناف', + ], + + 'service_family_title' => 'قانون المرأة والأسرة', + 'service_family_items' => [ + 'إجراءات الطلاق', + 'قضايا النفقة', + 'حضانة الأطفال', + 'الحماية من العنف', + ], + + 'service_civil_title' => 'النزاعات المدنية والتجارية', + 'service_civil_items' => [ + 'قضايا الشراكة', + 'المطالبات المالية', + 'النزاعات المدنية', + 'التقاضي التجاري', + ], + + 'service_business_title' => 'الخدمات القانونية للأعمال', + 'service_business_items' => [ + 'صياغة ومراجعة العقود', + 'الحوكمة والامتثال', + 'التحكيم', + 'الحل البديل للنزاعات', ], // Values Section diff --git a/lang/en/home.php b/lang/en/home.php index 7e87c6c..64c14f9 100644 --- a/lang/en/home.php +++ b/lang/en/home.php @@ -15,27 +15,37 @@ return [ // Services Section 'services_title' => 'Our Services', 'services_subtitle' => 'Comprehensive legal solutions for individuals and businesses', - 'services' => [ - 'consultations' => [ - 'icon' => 'chat-bubble-left-right', - 'title' => 'Legal Consultations', - 'description' => 'Expert legal advice tailored to your specific situation and needs.', - ], - 'representation' => [ - 'icon' => 'scale', - 'title' => 'Court Representation', - 'description' => 'Professional representation before courts and judicial bodies at all stages.', - ], - 'litigation' => [ - 'icon' => 'document-text', - 'title' => 'Litigation Management', - 'description' => 'Complete case management from pleadings and memoranda to appeals.', - ], - 'contracts' => [ - 'icon' => 'pencil-square', - 'title' => 'Contract Services', - 'description' => 'Drafting, review, and legal compliance for all your contractual needs.', - ], + + 'service_consultation_title' => 'Legal Consultations & Representation', + 'service_consultation_items' => [ + 'Legal advice', + 'Court representation', + 'Litigation management', + 'Pleadings & appeals', + ], + + 'service_family_title' => 'Women\'s & Family Law', + 'service_family_items' => [ + 'Divorce proceedings', + 'Alimony cases', + 'Child custody', + 'Protection from violence', + ], + + 'service_civil_title' => 'Civil & Commercial Disputes', + 'service_civil_items' => [ + 'Partnership cases', + 'Financial claims', + 'Civil disputes', + 'Commercial litigation', + ], + + 'service_business_title' => 'Business Legal Services', + 'service_business_items' => [ + 'Contract drafting & review', + 'Governance & compliance', + 'Arbitration', + 'Alternative dispute resolution', ], // Values Section diff --git a/resources/views/livewire/pages/home.blade.php b/resources/views/livewire/pages/home.blade.php index 303e53f..e96114f 100644 --- a/resources/views/livewire/pages/home.blade.php +++ b/resources/views/livewire/pages/home.blade.php @@ -89,19 +89,77 @@ new #[Layout('components.layouts.public')] class extends Component
- @foreach(['consultations', 'representation', 'litigation', 'contracts'] as $service) -
-
- -
-

- {{ __('home.services.' . $service . '.title') }} -

-

- {{ __('home.services.' . $service . '.description') }} -

+ {{-- Legal Consultations & Representation --}} +
+
+
- @endforeach +

+ {{ __('home.service_consultation_title') }} +

+
    + @foreach(__('home.service_consultation_items') as $item) +
  • + + {{ $item }} +
  • + @endforeach +
+
+ + {{-- Women's & Family Law --}} +
+
+ +
+

+ {{ __('home.service_family_title') }} +

+
    + @foreach(__('home.service_family_items') as $item) +
  • + + {{ $item }} +
  • + @endforeach +
+
+ + {{-- Civil & Commercial Disputes --}} +
+
+ +
+

+ {{ __('home.service_civil_title') }} +

+
    + @foreach(__('home.service_civil_items') as $item) +
  • + + {{ $item }} +
  • + @endforeach +
+
+ + {{-- Business Legal Services --}} +
+
+ +
+

+ {{ __('home.service_business_title') }} +

+
    + @foreach(__('home.service_business_items') as $item) +
  • + + {{ $item }} +
  • + @endforeach +
+