
@foreach($renters as $renter)
   @php
           if(!empty($renter->birthday))
   {
   $birthday = null;
        try {
            $birthday = \Carbon\Carbon::createFromFormat('Y-m-d',$renter->birthday);
        } catch (Exception $exception)
        {
            $birthday = \Carbon\Carbon::createFromFormat('d/m/Y',$renter->birthday);
        }
   }
           @endphp
    @php $renterDt = \App\Models\Renter::where('user_id', $renter->id)->first(); @endphp
    @if(!empty($renter->contract_id))
        <p style="text-align:justify"><span style="font-family:Times New Roman,Times,serif"><strong><span
                            style="font-size:13.0pt">{{ $loop->index + 1 }},</span></strong><strong><span style="font-size:13.0pt">Đại diện &Ocirc;ng (b&agrave;): {{ $renter->name }}</span></strong><strong><span
                            style="font-size:13.0pt">&nbsp;.</span></strong></span></p><p style="text-align:justify"><span style="font-family:Times New Roman,Times,serif"><span
                        style="font-size:13.0pt">Nơi thường tr&uacute;:</span><span style="font-size:13.0pt">{{ $renter->address_text }}. Sinh ng&agrave;y: {{ !empty($birthday) ? $birthday->format('d/m/Y') : '............' }}</span></span>
        </p><p style="text-align:justify"><span style="font-family:Times New Roman,Times,serif"><span
                        style="font-size:13.0pt">CMND số: {{ $renter->id_number }}.&nbsp;</span></span>
        </p><p style="text-align:justify"><span style="font-family:Times New Roman,Times,serif"><span
                        style="font-size:13.0pt">Điện thoại: {{ $renter->phone }}.&nbsp;</span><span style="font-size:13.0pt">M&atilde; số VT: @if(!empty($renterDt)){{ $renterDt->note }} @endif</span></span>
        </p>@else<p style="text-align:justify"><span style="font-family:Times New Roman,Times,serif"><span
                        style="font-size:13.0pt">{{ $loop->index + 1 }},</span><span style="font-size:13.0pt">Họ v&agrave; t&ecirc;n: {{ $renter->name }}; SĐT: {{ $renter->phone  }}. Ng&agrave;y</span><span
                        style="font-size:13.0pt"> sinh: {{ !empty($birthday) ? $birthday->format('d/m/Y') : '............' }}.</span></span></p><p style="text-align:justify"><span style="font-family:Times New Roman,Times,serif"><span
                        style="font-size:13.0pt">CMND số: {{ $renter->id_number }};</span><span
                        style="font-size:13.0pt"></span><span style="font-size:13.0pt">. M&atilde; số VT: @if(!empty($renterDt)){{ $renterDt->note }} @endif.</span></span>
        </p>@endif
@endforeach<p style="text-align:justify"><span style="font-family:Times New Roman,Times,serif"><span
                style="font-size:13.0pt">Tổng</span><span style="font-size:13.0pt"> s</span><span
                style="font-size:13.0pt">ố lượng người trong ph&ograve;ng : {{ $renters->count() }}; Số lượng xe : {{ $numberBikes }}. ( Tối đa 2 xe )</span></span>
</p>
