@extends('layouts.master')
@section('content')
| Id |
Name |
Mobile Number |
Department |
InTime |
OutTime |
@if(count($visitors) > 0)
@php
$id = 1; // Initialize ID counter
@endphp
@foreach($visitors as $visitor)
| {{ $id }} |
{{$visitor->first_name}} {{$visitor->last_name}} |
{{$visitor->mob_no}} |
{{$visitor->department_name}} |
{{$visitor->in_datetime}} |
{{$visitor->out_datetime}} |
@php
$id++; // Increment ID for the next row
@endphp
@endforeach
@else
No Record Found
@endif
{!! $visitors->links() !!}
Total Count : {!! $visitors->total() !!}
@endsection