@extends('layouts.admin') @section('page_title', $isRtl ? 'مكتبة الوسائط' : 'Media Library') @section('content')

{{ $isRtl ? 'رفع ملفات' : 'Upload Files' }}

@csrf

{{ $isRtl ? 'الملفات' : 'Files' }}

@forelse($media as $file)
@if(str_starts_with($file->mime_type ?? '', 'image/')) @else @endif
{{ $file->original_name }}
{{ number_format(($file->size ?? 0) / 1024, 1) }} KB
@csrf @method('DELETE')
@empty
{{ $isRtl ? 'لا توجد ملفات' : 'No files uploaded' }}
@endforelse
{{ $media->links() }}
@endsection