{{-- resources/views/admin/content/contact.blade.php --}} @extends('admin.layout') @section('title', 'Contact Content') @php // مصفوفة السوشيال ميديا (Solid SVG & Valid PHP) $socialIconPresets = [ ['code' => 'LN', 'label' => 'LinkedIn', 'bg' => '#0A66C2', 'svg' => ''], ['code' => 'GH', 'label' => 'GitHub', 'bg' => '#24292F', 'svg' => ''], ['code' => 'X', 'label' => 'X / Twitter', 'bg' => '#111111', 'svg' => ''], ['code' => 'IG', 'label' => 'Instagram', 'bg' => '#E1306C', 'svg' => ''], ['code' => 'FB', 'label' => 'Facebook', 'bg' => '#1877F2', 'svg' => ''], ['code' => 'WA', 'label' => 'WhatsApp', 'bg' => '#25D366', 'svg' => ''], ]; // مصفوفة أيقونات التواصل (Solid SVG & Valid PHP) $contactIconPresets = [ ['code' => 'EM', 'label' => 'Email', 'bg' => '#3B82F6', 'svg' => ''], ['code' => 'PH', 'label' => 'Phone', 'bg' => '#10B981', 'svg' => ''], ['code' => 'MP', 'label' => 'Map Pin', 'bg' => '#EF4444', 'svg' => ''], ['code' => 'CL', 'label' => 'Clock', 'bg' => '#F59E0B', 'svg' => ''], ['code' => 'GL', 'label' => 'Globe', 'bg' => '#14B8A6', 'svg' => ''], ]; @endphp @section('body')
@if(session('success'))
{{ session('success') }}
@endif

Main Contact Section

@csrf @method('PUT')

Contact Items

@csrf
@foreach($contactIconPresets as $icon) @endforeach
@forelse($items ?? [] as $item)
{{ $item->label_en }} / {{ $item->label_ar }}
{{ $item->value_en }}
@csrf @method('DELETE')
@empty
No contact items yet.
@endforelse

Social Links

@csrf
@foreach($socialIconPresets as $icon) @endforeach
@forelse($socials ?? [] as $social)
{{ $social->label }}
{{ $social->href }}
@csrf @method('DELETE')
@empty
No social links yet.
@endforelse
@endsection @push('scripts') @endpush