@push('head') @endpush
Total {{ number_format($paginate_invoice->total()) }} {{ Lang::get('template_invoice.word.download_excel') }}
@foreach (ConfigCode::getCodes('INVOICE_STATUS') as $code) @continue (in_array($code->code, ['PROCESS', 'AGENCY_REMIT', 'AGENCY_REMIT_COMPLETED']))
{{ $code->name }}
@endforeach
@if (isLogin('staff')) @endif @if (isLogin('staff')) @endif @if (isLogin('staff')) @endif @if (isLogin('staff')) @endif @forelse ($paginate_invoice as $idx => $invoice) @if (isLogin('staff')) @endif @if (isLogin('staff')) @if ($invoice->remit_type === 'edm' && in_array($invoice->code_status, ['TUITION_REMIT_COMPLETED', 'SCHOOL_REMIT', 'SCHOOL_REMIT_COMPLETED'])) @else @endif @endif @empty @endforelse
{{ strtoupper(Lang::get('template_invoice.word.number.short')) }}{{ strtoupper(Lang::get('template_invoice.word.agency_name.short')) }}{{ strtoupper(Lang::get('template_invoice.word.student_name.short')) }} {{ strtoupper(Lang::get('template_invoice.word.school_name.short')) }} {{ strtoupper(Lang::get('template_invoice.word.commission_type.short')) }} {{ strtoupper(Lang::get('template_invoice.word.transfer_methods.short')) }} {{ strtoupper(Lang::get('template_invoice.word.total_payment_amount.short')) }} {{ strtoupper(Lang::get('template_invoice.word.invoice_date.short')) }} {{ strtoupper(Lang::get('template_invoice.word.school_remit_date.short')) }} {{ strtoupper(Lang::get('template_invoice.word.invoice_status.short')) }}{{ Lang::get('template_invoice.word.edm_representative.short') }} {{ strtoupper(Lang::get('template_invoice.word.payment_confirmation_completed.short')) }} {{ strtoupper(Lang::get('template_invoice.word.transfer_to_school_completed.short')) }}
{{ $paginate_invoice->total() - $idx - (($paginate_invoice->currentPage() - 1) * $paginate_invoice->perPage()) }}
{{ $invoice->agency_name }}
{{ $invoice->process_name }}
{{ $invoice->school_name }}
{{ $invoice->commission_type_name or '' }}
{{ $invoice->remit_type_name or '' }}
@if (!$invoice->remit_type || $invoice->remit_type === 'edm') {{ $invoice->exchange_currency_name or '' }} {{ $invoice->payment['amount_exchange'] ? number_format($invoice->payment['amount_exchange']) : '' }} @elseif ($invoice->remit_type === 'school') {{ $invoice->currency_name or '' }} {{ $invoice->amount ? number_format($invoice->amount, 2) : '' }} @endif
{{ $invoice->invoice_date_ymd }}
{{ $invoice->school_remit_date_ymd or '' }}
{{ $invoice->code_status_name or '' }}
{{ $invoice->process_staff_charge_en_name or '' }}
code_status, 'TUITION_REMIT_COMPLETED', 'checked')/>
code_status, 'SCHOOL_REMIT_COMPLETED', 'checked')/>

{{ Lang::get('template_invoice.desc.no_registered_invoices') }}
{{ $paginate_invoice->appends([ // 에이전시 'agency_id' => Request::get('agency_id'), // 학비입금확인 'tuition_remit_check' => Request::get('tuition_remit_check'), // 학교송금확인 'school_remit_check' => Request::get('school_remit_check'), // 커미션구분 'commission_type' => Request::get('commission_type'), // 송금방법 'remit_type' => Request::get('remit_type'), // 고객명 'name' => Request::get('name'), // 학교명 'school_name' => Request::get('school_name'), // 진행단계 'code_status' => Request::get('code_status'), // 날짜검색 - 종류 'type_date' => Request::get('type_date'), // 날짜검색 - 시작일 'start_date' => Request::get('start_date'), // 날짜검색 - 종료일 'end_date' => Request::get('end_date'), // 수속타입 'admission_type' => Request::get('admission_type'), ])->links('template.form.pagination') }}