PANVEL MUNICIPAL CORPORATION


       VISITOR'S SPECIAL GATE PASS


Name : {{ $visitor->first_name }} {{ $visitor->middle_name }} {{ $visitor->last_name }} Image
Age : {{ $visitor->age }}
Mobile : {{ $visitor->mob_no }}
Organization : {{ $visitor->organization_name }}
Department : {{ $visitor->department_name }}
Address : {{ $visitor->address }}
Pass Made For : {{ $visitor->name }}
Pass Status : {{ $visitor->approval_status }}


Valid From : {{ $visitor->valid_from }} Valid Till : {{ date('d-m-Y',strtotime($visitor->valid_till)) }}


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