@if (env('APP_PROJECT') != 'Rouaa')
@include('web.settings_menu')
@endif
{{ $archiveContacts->links('vendor.pagination.custom') }}
@include('web.contacts.create')
@if (session('success'))
@endif
{{ $contacts->links('vendor.pagination.custom') }}
{{ session('success') }}
@endif
@if ($errors->any())
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
@lang('user.first_name') | @lang('user.last_name') | @lang('user.email') | @lang('user.mobile') | @lang('user.tags') | @lang('user.channel') | @lang('user.created_at') | @lang('user.actions') |
---|---|---|---|---|---|---|---|
{{ $contact->first_name }} | {{ $contact->last_name }} | {{ $contact->email }} | {{ $contact->mobile }} | {{ implode(', ', $contact->tags()->pluck('name')->toArray()) }} | @if ($contact->channel == 1) WhatsApp @elseif($contact->channel == 2) Messenger @else Instagram @endif | {{ $contact->created_at }} |
@if ($contact->channel == 1)
@endif
|
@lang('user.first_name') | @lang('user.last_name') | @lang('user.email') | @lang('user.mobile') | @lang('user.tags') | @lang('user.channel') | @lang('user.created_at') | @lang('user.actions') |
---|---|---|---|---|---|---|---|
{{ $contact->first_name }} | {{ $contact->last_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 }} |
|