@extends('public.layout.app') @section('title', __('front.all_materials')) @section('body') @include('public.portals.teacher.partials.nav') {{ __('front.all_course_materials') }} {{ __('front.materials') }} {{ $materials->count() }} Total @if($materials->isEmpty()) {{ __('front.no_materials_found') }} {{ __('front.add_material_to_a_course') }} @else @foreach($materials as $material) @if($material->type == 'video') @else @endif {{ $material->title }} {{ $material->course->code ?? '—' }} {{ $material->created_at->format('M d, Y') }} {{ $material->type == 'video' ? 'Video' : 'Document' }} @csrf @method('DELETE') @endforeach @endif @endsection
{{ __('front.no_materials_found') }}
{{ $material->course->code ?? '—' }}
{{ $material->created_at->format('M d, Y') }}