@extends('sistema.layout') @section('titulo', 'Visitas ao museu') @section('conteudo')
| Tipo | Tipo de visita | Nome | Data e Hora | Estado | Solicitado aos | |
|---|---|---|---|---|---|---|
| {{ $item->tipo }} | {{ $item->nome }} | {{ date('d/m/Y', strtotime($item->data_visita)) }} {{ $item->hora_visita }} | @php $cores = [ 'pendente' => 'bg-warning text-dark', 'aprovada' => 'bg-success', 'rejeitada' => 'bg-danger', 'cancelada' => 'bg-secondary', 'realizada' => 'bg-primary', 'não apareceu' => 'bg-dark', 'reagendada' => 'bg-info text-dark', ]; @endphp {{ ucfirst($visita->estado) }} | {{ $item->created_at->DiffForHumans() }} {{ $item->created_at->format('d/m/Y H:i:s') }} |
|