@if ($link)
{{ $invoice->invoice_type_name or '' }} |
{{ date('Y.m.d', $invoice->invoice_date) }} |
{{ $invoice->school_name or ' ' }} |
{{ $invoice->code_status_name or '' }} |
@else
{{ $invoice->invoice_type_name or '' }} |
{{ date('Y.m.d', $invoice->invoice_date) }} |
{{ $invoice->school_name or ' ' }} |
{{ $invoice->code_status_name or '' }} |
@endif
@if (isLogin('staff'))
{{-- 작성중일 경우 --}}
@if ($invoice->code_status === 'PROCESS')
{{-- 작성완료일 경우 --}}
@elseif (in_array($invoice->code_status, ['INVOICE']))
{{-- 학비정산서 송금완료일 경우 환불정산서 링크 제공 --}}
@elseif ($invoice->code_status === 'SCHOOL_REMIT_COMPLETED')
@endif
|
@endif
@empty