@extends("admin.template.layout") @section('content')
Venue | {{ $checkIns->first()->venue_name ?? '' }} | ||||
User Name | {{ $checkIns->first()->user_name ?? '' }} | ||||
Check In Time | {{ $checkIns->first()->check_in_time ?? '' }} | Check Out Time | {{ $checkIns->first()->check_out_time ?? '' }} | Status | @php $status = isset($checkIns->first()->status) ? $checkIns->first()->status : null; $badge = ($status=='checked_in') ? 'badge badge-success' : 'badge badge-warning'; $text = $status=='checked_in' ? 'Checked in' : 'Checked out'; @endphp{{$text}} |
Time Spent | {{ $checkIns->first()->time_spent ?? '' }} |