@extends('layouts.app') @section('title', 'Mes contacts') @section('content')
Liste de tous vos contacts
| Type | Entité | Prénom | Nom | Contact | Adresse | Partagé avec | Actions |
|---|---|---|---|---|---|---|---|
| @if($contact->type->value === 'individual') @else @endif | {{ $contact->entity_name ?: '-' }} | {{ $contact->first_name ?: '-' }} | {{ $contact->last_name ?: '-' }} |
@if($contact->street || $contact->zip || $contact->city)
@if($contact->street)
@else
-
@endif
{{ $contact->street }}
@endif
@if($contact->zip || $contact->city)
{{ $contact->zip }} {{ $contact->city }}
@endif
|
@php
$otherUsers = $contact->users->where('id', '!=', $user->id);
@endphp
@if($otherUsers->count() > 0)
@foreach($otherUsers as $sharedUser)
{{ $sharedUser->name }}
@endforeach
@else
Vous seul·e
@endif
|
||
| Aucun contact trouvé | |||||||