@extends('layouts.app') @section('title', __('dashboard.file_manager_trash_title')) @section('page_heading', __('dashboard.file_manager_trash_title')) @section('content')
مدير الملفات
{{-- Head --}}
الملفات المنقولة إلى السلة {{ $trashItems->count() }} ملف
يمكن استعادتها أو حذفها نهائياً.
@if($trashItems->isEmpty())
@include('layouts.partials.index-empty-state', ['icon'=>'fa-solid fa-trash-can','title'=>'السلة فارغة','message'=>'لا توجد ملفات في السلة حالياً.'])
@else
@foreach(['الملف','المسار الأصلي','الحجم','الارتباطات'] as $h) @endforeach @foreach($trashItems as $item) @endforeach
{{ $h }}الإجراءات
{{ $item->original_name }} {{ $item->original_path }} {{ $item->size ? number_format($item->size / 1024, 2) . ' KB' : '—' }} {{ count($item->references ?? []) }}
@csrf
@csrf @method('DELETE')
@endif
@endsection