@if($householdCitizens->count() > 0)
@foreach($householdCitizens as $citizen) @endforeach
Name Email Phone Status Actions
@if($citizen->avatar) {{ $citizen->name }} @else
@endif {{ $citizen->salutation }} {{ $citizen->name }}
{{ $citizen->email ?? '-' }} {{ $citizen->phone ?? $citizen->mobile ?? '-' }} @if($citizen->is_primary) Primary @endif
@if(!$citizen->is_primary) @else @endif {{ ($this->deleteAction)(['citizenId' => $citizen->id]) }}
@else

No citizens

Use the select above to add citizens to this household.

@endif