| {{ $visita->nome_fornecedor }} |
{{ $visita->nome_fantasia }} |
{{ $visita->status }} |
{{ $visita->promotor_nome }} |
@php
$date_checkin=date_create($visita->checkin);
@endphp
{{ $visita->checkin != null ? date_format($date_checkin,"d-m-Y H:i:s") : '-' }}
|
@php
$date_checkout=date_create($visita->checkout);
@endphp
{{ $visita->checkout != null ? date_format($date_checkout,"d-m-Y H:i:s") : '-' }}
|
@php
$date_data_agendamento=date_create($visita->data_agendamento);
@endphp
{{ $visita->data_agendamento != null ? date_format($date_data_agendamento,"d-m-Y H:i:s") : '-' }}
|
@endforeach