@extends('adminlte.app') @section('content') @if ($message = Session::get('success'))

{{ $message }}

@endif

Solicitação Suporte

Solicitação de Suporte
@if($permissao->criar_solicitacao_suporte) @endif
@foreach($solicitacao_suporte as $suporte) @if($permissao->alterar_solicitacao_suporte||$permissao->excluir_solicitacao_suporte) @endif @endforeach
NR Usuario Titulo Suporte Descrição Data do Pedido Status Do Pedido Previsao Conclusao Ações
{{$suporte->id }} {{$suporte->user->name }} {{$suporte->titulo_suporte}} {{$suporte->descricao}} {{ (new DateTime($suporte->data_pedido))->format('d/m/Y') }} {{$suporte->status}} @if($suporte->conclusao_chamado) {{ (new DateTime($suporte->conclusao_chamado))->format('d/m/Y') }} @endif @if($permissao->alterar_solicitacao_suporte)
@endif @if($permissao->excluir_solicitacao_suporte)
@csrf @method('DELETE')
@endif
@endsection