@extends('layouts.app') @section('title','Visitor Log') @section('page-title','Visitor Log') @section('content')
| Name | Phone | Organization | Purpose | Person To See | Time In | Time Out | Status | |
|---|---|---|---|---|---|---|---|---|
| {{ $v->name }} | {{ $v->phone ?? '-' }} | {{ $v->organization ?? '-' }} | {{ Str::limit($v->purpose,30) }} | {{ $v->person_to_see ?? '-' }} | {{ $v->time_in->format('H:i') }} | {{ $v->time_out ? $v->time_out->format('H:i') : 'On Site' }} | {{ $v->time_out ? 'Left' : 'On Site' }} | @if(!$v->time_out)@endif |
| No visitors today. | ||||||||