@extends('admin.layout')
@section('title', 'إدارة الهيدر والفوتر')
@section('page-title', 'إدارة الهيدر والفوتر')
@section('content')
@php
// Sample data - replace with actual data from controller
$contents = collect([
(object)[
'id' => 1,
'section_key' => $selectedSection . '_logo',
'content_ar' => 'QROVER',
'content_en' => 'QROVER',
'content_type' => 'text',
'sort_order' => 1,
'is_active' => true
],
(object)[
'id' => 2,
'section_key' => $selectedSection . '_menu',
'content_ar' => 'القائمة الرئيسية',
'content_en' => 'Main Menu',
'content_type' => 'html',
'sort_order' => 2,
'is_active' => true
]
]);
@endphp
@if($contents->count() > 0)
| القسم |
المحتوى العربي |
المحتوى الإنجليزي |
النوع |
الترتيب |
الحالة |
الإجراءات |
@foreach($contents as $content)
|
{{ $content->section_key }}
|
{{ $content->content_ar ?: '-' }}
|
{{ $content->content_en ?: '-' }}
|
{{ $content->content_type }}
|
{{ $content->sort_order }}
|
{{ $content->is_active ? 'نشط' : 'غير نشط' }}
|
|
@endforeach
@else
لا يوجد محتوى
لم يتم إضافة أي محتوى لهذا القسم بعد
@endif
@endsection
@push('styles')
@endpush
@push('scripts')
@endpush