Lista de Instituições - Atualizada em {{ date('d/m/Y H:i') }}


@foreach($hospitals as $hospital) @endforeach
{{ $hospital->name }}
@if($hospital->address) Endereço
Rua: {!! $hospital->address !!}, Nº @if($hospital->number) {!! $hospital->number !!} @else -- @endif @if($hospital->district) Bairro: {!! $hospital->district !!}
@endif @if($hospital->complement) Complemento: {!! $hospital->complement !!}
@endif {!! $hospital->city ? ($hospital->city?->city.',') : ''!!} {!! $hospital->state?->uf !!}

@endif
@if($hospital->contacts->count() > 0) Contatos
@foreach($hospital->contacts as $contact) {{ $contact->name }} @if(!$loop->last) | @endif @endforeach

@endif