@extends( 'newBase' ) @section( 'title', 'index' ) @section( 'content' )
{{--title bar--}}
个人信息
{{--personal info--}}
姓名:{{$customer->userName}}
电话:{{$customer->phone}}
邮箱:{{$customer->email}}
渠道:@foreach($channels as $channel) @if($channel["channelKey"] == $application->channel) {{App\Channels::getDisplayName($channel)}} @endif @endforeach
优先级:@foreach($application_priority as $key=>$value) @if($key == $application->priority) {{$value[0]}} @endif @endforeach
{{__('User Name')}}: {{$customer->registeredName}}
@if(!empty($application->discountCode))
折扣码 : {{$application->discountCode}}
@endif
专业申请设置
{{--Content for application information--}}
类别:{{$application->courseLevel}}
学校:{{$application->uniNameChinese." ".$application->uniName}}
专业:{{$application->courseNameChinese." ".$application->courseNameEnglish}}
备注:
{{$application->remarks ?? ''}}
操作类别:
{{--Content for statusDetails--}}
{{--Content for approvalInfo--}}
{{--Content for save and submit buttons--}}
@if($isEditable && $isApprover == 0)
提交内容
@else @if($isApprover == 1)
审批通过
审批拒绝
@elseif($isApprover == 4) {{--加一个newApproval参数 请求getApprovalInfoDetails接口 拿填写数据模板--}}
重新发起审批
@elseif($isApprover == 2)
审批通过
审批拒绝
@endif @endif
提交内容
{{--section for change log--}}
操作记录
@include('common.confirmation') @include('common.notification') @include('common.isReadOnly',['isReadOnly'=>$isReadOnly]) @endsection