| # | Name | Type | Phase | Phone | Tags | Actions |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{-- NAME --}}
{{ $fullName ?: 'N/A' }}
@if($contact->email)
{{ $contact->email }}
@endif
|
{{-- TYPE --}}
@if($contact->contactType) {{ $contact->contactType->title }} @else - @endif | {{-- PHASE --}}@if($contact->contactPhase) {{ $contact->contactPhase->title }} @else - @endif | {{-- PHONE --}}{{ $contact->phone1 ?: '-' }} | {{-- TAGS --}}
@if($contact->tags->count())
@foreach($contact->tags as $tag)
{{ $tag->title }}
@endforeach
@else
-
@endif
|
{{-- ACTIONS --}}
|