@extends('layouts.app') @section('content') @php $fmt = fn ($bytes) => $bytes >= 1073741824 ? number_format($bytes / 1073741824, 2).' GB' : ($bytes >= 1048576 ? number_format($bytes / 1048576, 2).' MB' : number_format($bytes / 1024, 1).' KB'); @endphp

Storage Usage

← Admin home
{{ $fmt($totalBytes) }} Total media storage
@if($diskTotal)
{{ $fmt($diskFree ?? 0) }} Disk free
@endif

By category

@foreach($byCategory as $cat => $bytes) @endforeach
CategorySize
{{ ucfirst($cat) }} {{ $fmt($bytes) }}

Top users by media uploaded

@forelse($topUsers as $row) @empty @endforelse
UserUploaded
{{ $row['user']?->name ?? 'Unknown' }} {{ $fmt($row['bytes']) }}
No media data yet.
@endsection