Chamados Abertos"; @endphp
@include('components.buttons._headLineButtonsBackAdd', [
'headLine' => __($headLine),
'routeBack' => 'admin.saude.fibromialgia.index',
'routeBackParams' => [],
'nameBack' => __("Voltar"),
'routeAdd' => 'admin.saude.fibromialgia.chamados.fechados',
'routeAddParams' => [],
'nameAdd' => __('Chamados finalizados'),
'fontawesomeAdd' => "
",
"permission" => "GERENCIADOR_DO_CADASTRO_DE_PACIENTES_COM_FIBROMIALGIA",
])
@include("errors.messageFlash")
@include('components/forms/_filtroPesquisaDefault', [
"id" => "chamadosAbertos",
"placeholder" => "Pesquisar atendimento..."
])
@php $index = 0; @endphp
@foreach($chamados as $chamado)
| {{ $chamado->numeroChamado }} |
{{ date("d/m/Y H:i", strtotime($chamado->created_at)) }} |
{{ $chamado->user->name }} |
{{ $chamado->assunto }} |
{{ $chamado->statusChamado }} |
@include('components.buttons._editButton', [
"route" => "admin.saude.fibromialgia.chamados.show",
"id" => $chamado->id,
"title" => "Página de Acompanhamento",
"fontawesome" => "",
"permission" => "GERENCIADOR_DO_CADASTRO_DE_PACIENTES_COM_FIBROMIALGIA",
])
|
@php $index++; @endphp
@endforeach