@php
$breadcrumbs = [
[
'route' => route('index'),
'title' => __('Página Inicial'),
],
[
'currentPage' => 'page',
'title' => __('Portal da Transparência'),
],
];
$conselhos = [
[
'nome' => __('Conselho Municipal do Idoso - CMI'),
'sigla' => 'CMI',
'url' => 'https://angra.rj.gov.br/servicos/conselho-municipal-do-idoso-cmi',
'icon' => 'fa-person-cane',
],
[
'nome' => __('Conselho Municipal de Entorpecentes - COMEN'),
'sigla' => 'COMEN',
'url' => 'https://angra.rj.gov.br/servicos/conselho-municipal-de-entorpecentes-comen',
'icon' => 'fa-shield-heart',
],
[
'nome' => __('Conselho Municipal do Direito da Criança e do Adolescente - CMDCA'),
'sigla' => 'CMDCA',
'url' => 'https://angra.rj.gov.br/servicos/conselho-municipal-dos-direitos-das-criancas-e-dos-adolescentes',
'icon' => 'fa-child-reaching',
],
[
'nome' => __('Conselho Municipal dos Direitos das Pessoas com Deficiência - CMDPD'),
'sigla' => 'CMDPD',
'url' => 'https://angra.rj.gov.br/servicos/conselho-municipal-dos-direitos-da-pessoa-com-deficiencia-cmdpd',
'icon' => 'fa-wheelchair',
],
[
'nome' => __('Conselho Municipal de Educação - CME'),
'sigla' => 'CME',
'url' => 'https://angra.rj.gov.br/servicos/cacs-fundeb',
'icon' => 'fa-graduation-cap',
],
[
'nome' => __('Conselho Municipal de Saúde - CMS'),
'sigla' => 'CMS',
'url' => 'https://angra.rj.gov.br/servicos/conselho-municipal-de-saude',
'icon' => 'fa-heart-pulse',
],
[
'nome' => __('Conselho Municipal de Assistência Social - CMAS'),
'sigla' => 'CMAS',
'url' => 'https://angra.rj.gov.br/servicos/conselho-municipal-de-assistencia-social-cmas',
'icon' => 'fa-hands-holding-child',
],
[
'nome' => __('Conselho Municipal de Turismo - Comtur'),
'sigla' => 'Comtur',
'url' => 'https://angra.rj.gov.br/servicos/conselho-municipal-de-turismo',
'icon' => 'fa-umbrella-beach',
],
[
'nome' => __('Conselho Municipal para Assuntos da Pesca - CMAP'),
'sigla' => 'CMAP',
'url' => 'https://angra.rj.gov.br/servicos/cmap-conselho-municipal-para-assuntos-da-pesca',
'icon' => 'fa-fish',
],
];
@endphp
@include('components._breadcrumb', $breadcrumbs)
@include('components._titleMain', [
'title' => __('Conselhos Municipais de Angra dos Reis'),
'summary' => __('Consulte os conselhos municipais e acesse as informações publicadas por cada órgão colegiado.'),
])
{{ __('Selecione um conselho na lista abaixo para acessar documentos, atas, resoluções e demais publicações no portal institucional da Prefeitura.') }}
{{ count($conselhos) }}
{{ __('conselho(s) encontrado(s)') }}
@foreach ($conselhos as $conselho)
@endforeach
{{ __('Nenhum conselho encontrado para a busca informada.') }}