@extends('layouts.main_dashboard.app') @php $routePrefix = auth()->user()?->usesStaffPortal() ? 'teacher' : 'admin'; $isArabic = app()->getLocale() === 'ar'; $lessons = $course->subject?->lessons ?? collect(); $materialsCollection = $materials instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator || $materials instanceof \Illuminate\Contracts\Pagination\Paginator ? $materials->getCollection() : collect($materials); @endphp @section('title', __('dashboard.All Materials')) @section('page_heading', __('dashboard.All Materials')) @section('page_subtitle', $course->name) @section('skip_page_hero', true) @section('content')
{{ $isArabic ? 'صفحة أوضح لعرض كل مواد المقرر، مع بحث مباشر، فرز بالدرس، ووصول سريع لإدارة كل عنصر.' : 'A clearer page for all course materials with direct search, lesson filtering, and quick actions for each item.' }}
{{ __('dashboard.There are no materials to display, try creating one!') }}
{{ __('dashboard.Add New Material') }}