@extends('layouts.master') @section('css') @endsection @section('content') @include('components.breadcum')
@csrf @method('PUT')
{{ $data->id }}
{{ $data->created_at ? $data->created_at->format('d-m-Y') : 'N/A' }}
{{ $data->user->name ?? 'No user' }}


@if($data->file)
File
@else

No file uploaded

@endif

@if($data->thumbnail)
Thumbnail
@else

No thumbnail uploaded

@endif
@endsection @section('script') @endsection