@extends('admin.layout') @section('title', 'إدارة القوائم') @section('page-title', 'إدارة القوائم') @section('content')
@php // Sample data - replace with actual data from controller $menus = collect([ (object)['id' => 1, 'section_key' => 'home', 'content_ar' => 'الرئيسية', 'content_en' => 'Home', 'sort_order' => 1, 'is_active' => true], (object)['id' => 2, 'section_key' => 'about', 'content_ar' => 'من نحن', 'content_en' => 'About', 'sort_order' => 2, 'is_active' => true], (object)['id' => 3, 'section_key' => 'contact', 'content_ar' => 'الاتصال', 'content_en' => 'Contact', 'sort_order' => 3, 'is_active' => false] ]); @endphp
{{ $menus->count() }}
إجمالي عناصر القائمة
{{ $menus->where('is_active', 1)->count() }}
عناصر نشطة
{{ $menus->where('is_active', 0)->count() }}
عناصر غير نشطة
@endsection @push('styles') @endpush @push('scripts') @endpush