@if(count($items) > 0)
{{ __('Empty Trash') }}
@foreach($items as $item) @endforeach
{{ __('Name') }} {{ __('Actions') }}
$item['is_dir'], 'text-primary-500' => !$item['is_dir'], ]) />
{{ $item['name'] }} {{ date('M d, Y H:i', $item['trashed_at']) }}
@else

{{ __('Trash is empty') }}

{{ __('Deleted items will appear here') }}

@endif