@extends('layouts.master') @section('content')
Visitor Entry List
@if(count($visitors) > 0) @php $id = 1; // Initialize ID counter @endphp @foreach($visitors as $visitor) @php $id++; // Initialize ID counter @endphp @endforeach @else

No Record Found

@endif
Id Photo Name Pass ID Mobile Number Date In Time Out Time Oragnization
{{$id}} View Photo {{$visitor->name}} {{$visitor->pass_id}} {{$visitor->mobile}} {{ substr($visitor->entry_datetime, 0, 10) }} {{$visitor->entry_datetime}} {{$visitor->exit_datetime}} {{$visitor->organization}}
{!! $visitors->links() !!} Total Count : {!! $visitors->total() !!}
@endsection