@extends('layouts.master') @section('content')
Not Submitted List
@if(count($visitors) > 0) @php $id = 1; // Initialize ID counter @endphp @foreach($visitors as $visitor) @php $id++; // Increment ID for the next row @endphp @endforeach @else

No Record Found

@endif
Id Name Pass ID Mobile Number Date And Time Oragnization Action
{{ $id }} {{$visitor->name}} {{$visitor->pass_id}} {{$visitor->mobile}} {{$visitor->entry_datetime}} {{$visitor->organization}}
@csrf @method('POST')
{!! $visitors->links() !!} Total Count : {!! $visitors->total() !!}
@endsection