@php /* * Invoice 조회 페이지 */ @endphp @extends('layouts.page') @include('html.header.edm-ajax') @push('css') @endpush @push('script') @endpush @push('head') @endpush @section('ui-header') @endsection @section('ui-content')

{{ $info_invoice->invoice_type === 'tuition' ? '학비' : ($info_invoice->invoice_type === 'refund' ? '환불' : '') }}정산서

@include($info_invoice->invoice_type === 'refund' ? 'template.invoice.refund_show' : 'template.invoice.show', [ 'info_invoice' => $info_invoice, ])
@endsection @section('ui-footer') @endsection