پنل مدیریت
    @php $navItems = [ ['route' => 'admin.dashboard', 'icon' => 'fas fa-tachometer-alt', 'label' => 'داشبورد'], ['type' => 'divider', 'label' => 'مدیریت محتوا'], ['route' => 'flashcard-categories.index', 'icon' => 'fas fa-graduation-cap', 'label' => 'دسته‌بندی فلش‌کارت'], ['route' => 'book-categories.index', 'icon' => 'fas fa-folder-tree', 'label' => 'دسته‌بندی کتاب'], ['route' => 'flashcards.index', 'icon' => 'fas fa-clone', 'label' => 'فلش‌کارت‌ها'], ['route' => 'books.index', 'icon' => 'fas fa-book', 'label' => 'کتاب‌ها'], ['type' => 'divider', 'label' => 'مدیریت اشتراک'], ['route' => 'subscription-plans.index', 'icon' => 'fas fa-star', 'label' => 'پلن‌های اشتراک'], ['route' => 'admin.purchases.index', 'icon' => 'fas fa-shopping-cart', 'label' => 'سوابق خرید'], ['type' => 'divider', 'label' => 'مدیریت سیستم'], ['route' => 'admin.users.index', 'icon' => 'fas fa-users', 'label' => 'مدیریت کاربران'], ['route' => 'tickets.index', 'icon' => 'fas fa-headset', 'label' => 'پشتیبانی'], ['route' => 'admins.index', 'icon' => 'fas fa-user-shield', 'label' => 'مدیران'], ['route' => 'admin.activity-logs', 'icon' => 'fas fa-history', 'label' => 'آخرین فعالیت‌ها'], ['route' => 'notifications.index', 'icon' => 'fas fa-bell', 'label' => 'اعلانات'], ['route' => 'admin.settings.index', 'icon' => 'fas fa-cog', 'label' => 'تنظیمات سیستم'], ['route' => 'admin.docs', 'icon' => 'fas fa-code', 'label' => 'داکیومنت Api'], ]; @endphp @foreach($navItems as $item) @if(isset($item['type']) && $item['type'] === 'divider')
  • {{ $item['label'] }}
  • @else
  • {{ $item['label'] }}
  • @endif @endforeach