{{ __('Attachments') }}

@can('attachments create') @endcan
@foreach($tabs as $t)
@endforeach
@if (session()->has('message'))
{{ session('message') }}
@endif
@if ($activeTab === 'correspondence') @endif @forelse($data as $row) @if ($activeTab === 'correspondence') @endif @empty @endforelse
# {{ __('Issuer') }} {{ __('Start Date') }} {{ __('End Date') }} {{ __('Status') }}{{ __('Type') }} {{ __('Original Copy') }}{{ __('Notes') }} {{ __('File') }} {{ __('Actions') }}
{{ $loop->iteration + ($data->currentPage() - 1) * $data->perPage() }} {{ $row->issuer }} {{ $row->start_date }} {{ $row->end_date }} {{ $statusOptions[$row->status]['label'] }} {{ $row->type }} {{ $row->original_copy }} {{ $row->notes }} @if($row->file_url) {{ __('View') }} @else {{ __('No File') }} @endif @can('attachments edit') @endcan @can('attachments delete') @endcan {{__("View")}}
{{ __('No Attachments Found') }}
{{ $data->links() }}

{{ $isEditMode ? __('Edit Attachment') : __('Add Attachment') }}

{{ __('Uploading') }}
@if ($confirmingDeletionId)

{{ __('Confirm Deletion') }}

{{ __('Are you sure you want to delete this attachment?') }}

@endif