This folder is empty
Create a new folder or upload files to get started
{{-- Select All / Deselect All --}}
@if($this->allSelected())
@else
@endif
@if(count($selectedItems) > 0)
{{ count($selectedItems) }} selected
{{-- Move Selected --}}
@endif
@if(count($selectedItems) > 0)
{{-- Delete Selected --}}
@endif
@foreach($this->items as $item)
@include('filemanager::filament.pages.partials.file-card', ['item' => $item, 'isReadOnly' => $this->isReadOnly()])
@endforeach
@else
{{-- List View --}}
@foreach($this->items as $item)
@include('filemanager::filament.pages.partials.file-list-item', ['item' => $item, 'isReadOnly' => $this->isReadOnly()])
@endforeach
@endif
@endif