@extends('admin.layout') @section('title', 'إدارة محتوى الصفحات') @section('page-title', 'إدارة محتوى الصفحات') @section('content')

اختيار الصفحة

@php $selectedPage = request()->get('page', 'home'); $pages = [ 'home' => ['name' => 'الرئيسية', 'icon' => 'fas fa-home'], 'about' => ['name' => 'من نحن', 'icon' => 'fas fa-info-circle'], 'contact' => ['name' => 'الاتصال', 'icon' => 'fas fa-envelope'], 'vehicles' => ['name' => 'المركبات', 'icon' => 'fas fa-car'], 'services' => ['name' => 'الخدمات', 'icon' => 'fas fa-cogs'] ]; @endphp @foreach($pages as $key => $page) {{ $page['name'] }} @endforeach
@php // Sample data - replace with actual data from controller $contents = collect([ (object)[ 'id' => 1, 'section_key' => 'hero_title', 'content_ar' => 'مرحباً بكم في QROVER', 'content_en' => 'Welcome to QROVER', 'content_type' => 'text', 'sort_order' => 1, 'is_active' => true ], (object)[ 'id' => 2, 'section_key' => 'hero_description', 'content_ar' => 'أفضل خدمات تأجير السيارات في المملكة', 'content_en' => 'Best car rental services in the Kingdom', 'content_type' => 'text', 'sort_order' => 2, 'is_active' => true ] ]); @endphp @if($contents->count() > 0) @foreach($contents as $content) @endforeach
القسم المحتوى العربي المحتوى الإنجليزي النوع الترتيب الحالة الإجراءات
{{ $content->section_key }}
{{ $content->content_ar ?: '-' }}
{{ $content->content_en ?: '-' }}
{{ $content->content_type }} {{ $content->sort_order }} {{ $content->is_active ? 'نشط' : 'غير نشط' }}
@else

لا يوجد محتوى

لم يتم إضافة أي محتوى لهذه الصفحة بعد

@endif
@endsection @push('styles') @endpush @push('scripts') @endpush