@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)
| {{ $h }} |
@endforeach
الإجراءات |
@foreach($trashItems as $item)
| {{ $item->original_name }} |
{{ $item->original_path }}
|
{{ $item->size ? number_format($item->size / 1024, 2) . ' KB' : '—' }} |
{{ count($item->references ?? []) }}
|
|
@endforeach
@endif
@endsection