@extends('layouts.admin') @section('title', 'Kelola File') @section('content')

Kelola File

Daftar semua file yang telah diunggah.

@csrf
@csrf @method('DELETE')
@csrf
@forelse($files as $file) @empty @endforelse
Informasi File Slug Ukuran Tanggal Aksi

{{ $file->file_name }} @if($file->is_group) Group @endif

{{ $file->is_group ? ($file->group_name ?: 'Batch Upload') : ($file->file_type ?? 'unknown') }}

{{ $file->slug }} {{ number_format($file->file_size / 1024, 2) }} KB {{ $file->created_at->format('d M Y') }}
@if(auth()->user()->role === 'super') @endif @if(auth()->user()->bot_username) @else @endif @csrf @method('DELETE')
Belum ada file yang ditemukan.
{{ $files->links() }}

Berhasil!

Link bot telah disalin.

@endsection