@php // Agency $agency = App\Model\Agency::find($info_invoice->agency_id); // Process $process = App\Model\Process::find($info_invoice->process_id); @endphp @extends('layouts.page') @include('html.header.input') @include('html.header.edm-ajax') @push('css') @endpush @push('script') @endpush @push('head') @endpush @section('ui-header') @endsection @section('ui-content')
{{-- 진행단계 --}}

{{ Lang::get('invoice.word.detailed_post_commission_information') }}

{{-- 진행단계별 안내사항 --}} @yield('invoice-content-notice') @if (isLogin('staff')) @endif {{-- 진행단계별 추가 정보 --}} @yield('invoice-content-table-add-info')

{{ Lang::get('invoice.word.agency') }}

{{ $agency->name or '' }}

{{ Lang::get('invoice.word.contact') }}

{{ $agency->tel_number or '' }}

{{ Lang::get('invoice.word.student_name') }}

{{ $info_invoice->process_name or '' }}

{{ Lang::get('invoice.word.admission_applied_date') }}

{{ isset($process->process_start_date) ? date('Y.m.d', $process->process_start_date) : '' }}

{{ Lang::get('invoice.word.school_name') }}

{{ $info_invoice->school_name or '' }}

{{ Lang::get('invoice.word.commission_amount') }}

{{ $info_invoice->currency }} {{ number_format($info_invoice->commission_amount, 2) }}

{{ Lang::get('invoice.word.commission') }}

{{ number_format($info_invoice->commission, 2) }} %

@if (isLogin('staff')) @yield('invoice-content-buttons') @endif

{{ Lang::get('invoice.word.invoice_details') }}

{!! $template_invoice !!}
@endsection @section('ui-footer') @endsection