@section('title') Invoice Summary @endsection @section('breadcrumbs') {{ __('Application Number: ' . $application->application_no) }} @endsection @section('styles') @endsection @include('pages.company.incomplete-application.partials.stepper', ['currentStep' => 3, 'type' => $application->type]) {{-- --}}

{{ 'Payment Details' }}

{{ __('Summary : ') }}

{{ __('Payment Details') }} View @php $allowModify = false; if ($payment_section) { $allowModify = $payment_section?->is_comply == 0; } elseif ($application->stage == App\Models\Application::STAGE_SO) { // handle so evaluation $sections = $evaluation?->section; if (is_array($sections)) { $allowModify = in_array('6', $sections); } } @endphp @if ($allowModify) @endif

{{ $application->payment->invoice_no ?? '-' }}
{{ $application->payment->created_at->format('d-m-Y') ?? '-' }}
{{ $application->payment?->total ? 'RM '.$application->payment?->total : '-' }}
{{ $application->payment?->payment_medium ? App\Models\Payment::PAYMENT_MEDIUM[$application->payment->payment_medium] : '-' }}
{{ $application->payment?->payment_method ?? '-' }}
{{ $application->payment->payment_at->format('d-m-Y') ?? '-' }}
{{ $application->payment?->total ? 'RM '.$application->payment->total : '-' }}
{{ $application->payment?->verified_at ? 'Verified on '.$application->payment->verified_at_formatted : 'Pending' }}
{{ $application->payment?->verified_by ? $application->payment->verified_by : '-' }}
Invoice @if(auth()->user()->roles->isNotEmpty()) [View Here] @else [View Here] @endif
@if ($application->payment?->hasPaymentSlip())
Payment Proof [View Here]
@endif
{{--
is_comply == '1' ? 'checked' : '' }} disabled>
is_comply == '0' ? 'checked' : '' }} disabled>
--}}


Back Proceed
@push('scripts') @endpush