@lang('user.first_name') |
@lang('user.last_name') |
@lang('admin.business_name') |
@lang('user.email') |
@lang('user.mobile') |
@lang('user.tags') |
@lang('user.channel') |
@lang('user.created_at') |
@foreach ($contacts as $contact)
{{ $contact->first_name }} |
{{ $contact->last_name }} |
{{ $contact->business->name }} |
{{ $contact->email }} |
{{ $contact->mobile }} |
@foreach ($contact->tags()->get() as $tag)
{{ $tag->name }}
@endforeach
|
@if ($contact->channel == 1)
WhatsApp
@elseif($contact->channel == 2)
Messenger
@else
Instagram
@endif
|
{{ $contact->created_at }} |
@endforeach
{{ $contacts->links('vendor.pagination.custom') }}