@extends('layouts.admin') @section('title', 'Arquivos') @section('eyebrow', 'Biblioteca') @section('content')
Novo arquivo
Ordenar por data Ordenar por downloads
@forelse ($files as $file) @empty @endforelse
Título Categoria Tipo Tamanho Status Downloads Cadastro Ações
{{ $file->title }}
{{ $file->original_name }}
{{ $file->category?->name }} {{ $file->type_label }} {{ $file->formatted_size }} {{ $file->status === 'active' ? 'Ativo' : 'Inativo' }} {{ number_format($file->downloads_count, 0, ',', '.') }} {{ $file->created_at?->format('d/m/Y') }}
@csrf @method('DELETE')
Nenhum arquivo encontrado.
{{ $files->links() }}
@endsection