@extends('layouts.public') @section('title', $file->title) @section('content')
Voltar para arquivos
{{ $file->type_label }} {{ $file->category?->name }}

{{ $file->title }}

{{ $file->description ?: 'Arquivo disponível para download.' }}

Tamanho
{{ $file->formatted_size }}
Publicado
{{ $file->published_at?->format('d/m/Y') }}
Downloads
{{ number_format($file->downloads_count, 0, ',', '.') }}
Formato
{{ $file->type_label }}
@if ($relatedFiles->isNotEmpty())

Arquivos relacionados

@foreach ($relatedFiles as $file) @include('partials.file-card', ['file' => $file]) @endforeach
@endif
@endsection