@if ($showViewRequestModal && $selectViewRequest)
@lang('modules.settings.apartmentNumber')
{{ $selectViewRequest->apartment->apartment_number }}
@lang('modules.billing.amount')
{{ currency_format($selectViewRequest->cost) }}
@lang('app.status')
@if ($selectViewRequest->paid_status == 'paid')
@lang('app.verified')
@elseif ($selectViewRequest->paid_status == 'payment_requested')
@lang('app.pending')
@else
@lang('app.rejected')
@endif
@lang('modules.billing.monthAndYear')
{{ ucfirst($selectViewRequest->maintenanceManagement->month) }}
{{ $selectViewRequest->maintenanceManagement->year }}
@if ($selectViewRequest->payment_proof)
@lang('modules.billing.paymentProof')
@if (Str::endsWith($selectViewRequest->payment_proof_url, '.pdf'))
@else
@endif
@endif
@endif