@extends('layouts.admin') @section('page_title', $isRtl ? 'القوائم' : 'Menus') @section('content')

{{ $isRtl ? 'عناصر القوائم' : 'Menu Items' }}

{{ $isRtl ? 'إضافة عنصر' : 'Add Item' }}
@php $grouped = $items->getCollection()->groupBy('location'); @endphp @foreach($locations as $loc)

{{ str_replace('_',' ',$loc) }}

@forelse($grouped[$loc] ?? [] as $item) @empty @endforelse
{{ $isRtl ? 'التسمية' : 'Label' }} URL {{ $isRtl ? 'الأصل' : 'Parent' }} {{ $isRtl ? 'الترتيب' : 'Order' }} {{ $isRtl ? 'الحالة' : 'Status' }}
@if($item->icon)@endif {{ $item->label }} {{ $item->url }} {{ $item->parent?->label }} {{ $item->order }} @if($item->is_active) {{ $isRtl ? 'نشط' : 'Active' }} @else {{ $isRtl ? 'معطل' : 'Inactive' }} @endif
@csrf @method('DELETE')
{{ $isRtl ? 'لا توجد عناصر' : 'No items' }}
@endforeach
{{ $items->links() }}
@endsection