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

Global File Explorer

Monitor and manage all files shared across the platform.

@foreach($files as $file) @endforeach
Owner File Name Size Actions
{{ strtoupper(substr(($file->user?->name ?? '?'), 0, 1)) }}
{{ $file->user?->name ?? 'Unknown' }}
{{ $file->file_name }} {{ $file->file_type }}
{{ number_format($file->file_size / 1024 / 1024, 2) }} MB
@csrf
@if($files->hasPages())
{{ $files->links() }}
@endif
@endsection