{{ t('contact_kanban_board') ?? 'Contact Kanban Board' }}

{{ t('refresh') ?? 'Refresh' }}
@foreach($statuses as $status)

{{ $status['title'] }}

{{ count($records[$status['id']] ?? []) }}
@foreach($records[$status['id']] ?? [] as $record)

{{ $record['title'] }}

@if($record['content']['type']) {{ $record['content']['type'] }} @endif
@if(checkPermission('tenant.contact.edit')) @endif
@if($record['content']['company'])
{{ $record['content']['company'] }}
@endif @if($record['content']['phone'])
{{ $record['content']['phone'] }}
@endif @if($record['content']['email'])
{{ $record['content']['email'] }}
@endif
@endforeach @if(count($records[$status['id']] ?? []) >= 20)
@endif
@endforeach