{{ __('Manage Education Materials') }}

{{-- Flash Messages --}} @if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{-- Upload Form --}}

Upload Material

@csrf
{{-- Uploaded Materials List --}}

Your Uploaded Materials

{{ $materials->count() }} Total
@if($materials->isEmpty())

You haven't uploaded any education materials yet.

@else
@foreach($materials as $material)
@if($material->type == 'youtube') @else @endif

{{ $material->title }}

Uploaded on {{ $material->created_at->format('M d, Y') }}
{{ $material->type }}
@if($material->description)

{{ $material->description }}

@endif
@if($material->type == 'youtube') View on YouTube @else View Video @endif
@endforeach
@endif