PANVEL MUNICIPAL CORPORATION


         VISITOR'S GATE PASS


@if(!empty($visitor->organization)) @else @endif
Name : {{ $visitor->name }} Image
Organization: {{ $visitor->organization }}: NA
No Of People : @if(!empty($visitor->no_of_people)) {{ $visitor->no_of_people }} @else 0 @endif
Pass ID : {{ $visitor->pass_id }}
Mobile : {{ $visitor->mobile }}
Pupose to visit : {{ $visitor->purpose_of_visit }}
To Visit : {{ $visitor->to_visit }}


In Time : {{ date('H:i:s',strtotime($visitor->entry_datetime)) }} Out Time : __________ Date : {{ date('Y-m-d',strtotime($visitor->entry_datetime)) }}



SIGNATURE OF THE ISSUING AUTHORITY : ___________

NOTE : THIS PASS SHOULD BE RETURNED AT THE GATE WHILE GOING OUT

@php // Capture the QR code generation output ob_start(); echo QrCode::size(150)->generate(route('update.exit.time', $visitor->id)); $qrCodeHtml = ob_get_clean(); // Remove the XML declaration if it exists $cleanQrCodeHtml = preg_replace('/<\?xml.*\?>/', '', $qrCodeHtml); @endphp
{!! $cleanQrCodeHtml !!}