@extends('layouts.admin') @push('css') @endpush @push('js') @endpush @section('content')
| Servidor | Resolvido | Motivo | Atendente | Data | Ação |
|---|---|---|---|---|---|
| {{ $atendimento->servidor->nome }} | {{ $atendimento->resolvido ? 'SIM' : 'NÃO' }} | {{ optional($atendimento->motivo)->descricao }} | {{ $atendimento->usuario->name }} | {{ $atendimento->created_at->format('d/m/Y H:i:s') }} | @button([ 'route' => 'admin.guia-atendimento.edit', 'routeParams' => ['atendimento' => $atendimento], 'class' => 'btn-primary', 'label' => 'Visualizar/Editar', 'icon' => 'edit' ]) @endbutton |