@extends('theme') @section("title", "Portal da Transparência - Angra dos Reis :: Dívida Ativa") @section('content')
@php $breadcrumbs = [ [ 'route' => route('index'), 'title' => __("Página Inicial"), ], [ 'currentPage' => "page", 'title' => __("Unidades de Saúde de Angra dos Reis"), ], ]; @endphp @include('components._breadcrumb', $breadcrumbs) @include('components._titleMain', [ "title" => __("Unidades de Saúde de Angra dos Reis"), "summary" => __(""), ])

@include('components._cardSingle', [ "id" => "unidadesSaude", "link" => "https://angra.rj.gov.br/servicos/unidades-de-saude", "target" => "_blank", "fontawesome" => "", "title" => "Unidades de Saúde", ])
@include('components.tables._thead', ['thead' => [ 'Unidade de Saúde', 'Endereço', 'Telefone', 'Email', 'Informações Adicionais', ]]) @php $index = 0 @endphp @forelse($unidadesSaude as $unidade) @empty @endforelse
{{ $unidade->nome }} {{ $unidade->endereco->logradouro }}, nº {{ $unidade->endereco->numero }}
{{ $unidade->endereco->bairro }} - CEP: {{ $unidade->endereco->cep }}
{{ $unidade->telefone }} {{ $unidade->email }} {!! $unidade->informacoes !!}
{{ $unidade->nome }}
{!! $unidadesSaude->links() !!}
@endsection