@extends('layouts.app') @section('title', $material->title) @section('page-title', 'Material Details') @section('header-buttons') Back @endsection @section('content')

{{ $material->title }}

Complete material information
{{ $material->class->batch->name }}
{{ $material->class->subject->name }}
{{ $material->class->teacher->user->name }}
{{ $material->teacher->user->name }}
{{ $material->created_at->format('F d, Y \a\t h:i A') }}
{{ strtoupper($material->file_extension) }}
{{ $material->file_size_formatted }}
{{ $material->published ? 'Published' : 'Unpublished' }}
File Preview
@if($material->isImage()) {{ $material->title }} @elseif($material->isPdf())

PDF preview is not supported. Please download.

@elseif($material->isVideo())

Video preview unavailable. Please download.

@else

{{ strtoupper($material->file_extension) }} Document

@endif
Actions
Download File Edit Details
@csrf
@csrf @method('DELETE')
File Information
Filename: {{ $material->file_name }}
Type: {{ $material->file_type }}
Size: {{ $material->file_size_formatted }}
Extension: {{ $material->file_extension }}
@endsection