@extends('layouts.main')
@section('breadcrumb')
@include('admin.parts.breadcrumb.accounts.show', ['account' => $account])
{{ __('Contacts') }}
@endsection
@section('content')
{{ $account->identifier }}
@include('admin.account.parts.tabs')
{{ __('Add') }}
{{ __('Contacts') }}
@if ($account->contacts->isEmpty())
| {{ __('Empty') }} |
@else
@foreach ($account->contacts as $contact)
|
{{ $contact->identifier }}
|
|
@endforeach
@endif
@foreach ($account->contactsLists as $contactsList)
|
{{ $contactsList->title }}
{{ $contactsList->contacts_count }} {{ __('Contacts') }}
|
|
@endforeach
@if ($contacts_lists->isNotEmpty())
{{ __('Add') }}
{{ __('Add existing contacts lists to display them in the user applications.') }}
@endif
@endsection