@extends('backoffice.dashboard') @section('title', 'إدارة أقسام الصفحة الرئيسية') @section('content') @if(Auth::check()) {{-- ===== CSS ===== --}}

إدارة أقسام الصفحة الرئيسية

إضافة قسم جديد
@foreach($sections as $section) @endforeach
# المعرف العنوان (بالعربية) العنوان (بالفرنسية) العنوان (بالإنجليزية) الترتيب الحالة
{{ $loop->iteration }} {{ $section->section_key }} {{ $section->title_ar ?? '—' }} {{ $section->title_fr ?? '—' }} {{ $section->title_en ?? '—' }} {{ $section->position }} @if($section->is_visible) مفعل @else غير مفعل @endif
@if($section->type_section == 'dynamic')
@csrf @method('DELETE')
@endif
@else @endif @endsection