@extends('back.layout.app') @section('title', config('app.name') . ' - Contacts') @php $breadcrumb = 'crm.contacts'; @endphp @section('content')
| Contact | Téléphone | Client | ||
|---|---|---|---|---|
|
{{ $contact->firstname }} {{ $contact->lastname }}
@if ($contact->user_id)
Accès portail
@endif
@if ($contact->job)
{{ $contact->job }}
@endif
|
@if ($contact->email) {{ $contact->email }} @else — @endif | {{ $contact->phone ?: '—' }} | @if ($contact->customer) {{ $contact->customer->name }} @else — @endif |
@can('edit-contacts')
Modifier
@endcan
@if ($contact->user_id)
@can('revoke-portal')
Retirer l'accès portail
@endcan
@endif
@can('edit-contacts')
Supprimer
@endcan
|
| Contact | Téléphone | Prospect | ||
|---|---|---|---|---|
|
{{ $contact->firstname }} {{ $contact->lastname }}
@if ($contact->user_id)
Accès portail
@endif
@if ($contact->job)
{{ $contact->job }}
@endif
|
@if ($contact->email) {{ $contact->email }} @else — @endif | {{ $contact->phone ?: '—' }} | @if ($contact->customer) {{ $contact->customer->name }} @else — @endif |
@can('edit-contacts')
Modifier
Supprimer
@endcan
|
| Contact | Tél. | Mobile | Médias | ||
|---|---|---|---|---|---|
|
{{ $contact->firstname }} {{ $contact->lastname }}
@if ($contact->job)
{{ $contact->job }}
@endif
|
@if ($contact->email) {{ $contact->email }} @else — @endif | {{ $contact->phone ?: '—' }} | {{ $contact->gsm ?: '—' }} |
@forelse ($contact->medias as $media)
{{ $media->name }}
@empty
—
@endforelse
|
@can('edit-contacts')
Modifier
Supprimer
@endcan
|