Per page: @can('crm_document_delete') @endcan @if(file_exists(app_path('Http/Livewire/ExcelExport.php'))) @endif
Search:
Loading...
@forelse($crmDocuments as $crmDocument) @empty @endforelse
{{ trans('cruds.crmDocument.fields.id') }} @include('components.table.sort', ['field' => 'id']) {{ trans('cruds.crmDocument.fields.customer') }} @include('components.table.sort', ['field' => 'customer.first_name']) {{ trans('cruds.crmDocument.fields.document_file') }} {{ trans('cruds.crmDocument.fields.name') }} @include('components.table.sort', ['field' => 'name'])
{{ $crmDocument->id }} @if($crmDocument->customer) {{ $crmDocument->customer->first_name ?? '' }} @endif @foreach($crmDocument->document_file as $key => $entry) {{ $entry['file_name'] }} @endforeach {{ $crmDocument->name }}
@can('crm_document_show') {{ trans('global.view') }} @endcan @can('crm_document_edit') {{ trans('global.edit') }} @endcan @can('crm_document_delete') @endcan
No entries found.
@if($this->selectedCount)

{{ $this->selectedCount }} {{ __('Entries selected') }}

@endif {{ $crmDocuments->links() }}
@push('scripts') @endpush