@extends('layouts.main_dashboard.app') @php($routePrefix = auth()->user()?->usesStaffPortal() ? 'teacher' : 'admin') @section('styles') @endsection @section('title', __('dashboard.View Material') @section('page_heading', __('dashboard.View Material')) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.Download File') }} {{ __('dashboard.Edit') }} @endsection @section('content')

{{ $material->title }}

@if($material->is_published) {{ __('dashboard.Published') }} @else {{ __('dashboard.Unpublished') }} @endif
{{ $material->lesson->title ?? 'N/A' }}
{{ __('dashboard.Lesson') }}
{{ $material->type }}
{{ __('dashboard.Type') }}
{{ $material->views_count }}
{{ __('dashboard.Views Count') }}

{{ $material->description }}

@if (Str::startsWith($material->type, 'video/')) @elseif (Str::startsWith($material->type, 'audio/')) @elseif ($material->type === 'application/pdf') @elseif (Str::startsWith($material->type, 'image/')) {{ $material->title }} @else

{{ __('dashboard.Preview is not available for this file type.') }}

{{ __('dashboard.Download File') }}
@endif
@endsection