@php
/*
* 에이전시 가입신청 시, 관리자에게 발송되는 메일 template
* @param string $process_id process_id
* @param string $agency_name 에이전시명
* @param string $code_country 국가코드
* @param string $code_uhaktype 유학종류코드
* @param string $schools 수속학교 목록
* @param string $name 고객명
* @param string $created_date 생성일
*/
$agency = App\Model\Agency::Find($agency_id);
$country = ConfigCode::getCode('COUNTRY', $code_country);
$uhaktype = ConfigCode::getCode('UHAKTYPE', $code_uhaktype);
$uhakcourse = ConfigCode::getCode('UHAKCOURSE', $code_uhakcourse, $uhaktype->code_id);
if ($country) $country = $country->name;
if ($uhaktype) $uhaktype = $uhaktype->name;
if ($uhakcourse) $uhakcourse = $uhakcourse->name;
@endphp
에이전트 포탈 서비스
|
|
|
| {{ Lang::get('mail.word.student_name.short') }} |
{{ $en_name or '' }} |
{{ Lang::get('mail.word.agency_name.short') }} |
{{ $agency ? $agency->name : '' }} |
| {{ Lang::get('mail.word.country.short') }} |
{{ $country or '' }} |
{{ Lang::get('mail.word.study_type.short') }} |
{{ $uhaktype or '' }}{{ $uhakcourse ? ' / '.$uhakcourse : '' }} |
| {{ Lang::get('mail.word.school_name.short') }} |
@if ($schools)
@foreach ($schools as $school)
{{ $school->school_name or '' }}
@endforeach
@endif
|
| 에이전트 포탈 서비스 {{ Lang::get('mail.word.link') }} |
|
|
|
|
|