| 인원 |
수강생수 |
@foreach($monthlyCountData as $row)
{{$row->student_count}} |
@endforeach
{{$totalCountData->student_count}} |
| ①신규 |
@foreach($monthlyCountData as $row)
{{$row->new}} |
@endforeach
{{$totalCountData->new}} |
| ②재등록 |
@foreach($monthlyCountData as $row)
{{$row->renew}} |
@endforeach
{{$totalCountData->renew}} |
| ③기존 |
@foreach($monthlyCountData as $row)
{{$row->active}} |
@endforeach
{{$totalCountData->active}} |
| 매출 인원수(①+②) |
@foreach($monthlyCountData as $row)
{{$row->revenue_person_count}} |
@endforeach
{{$totalCountData->revenue_person_count}} |
| 환불인원수 |
@foreach($monthlyCountData as $row)
{{$row->refund_person_count}} |
@endforeach
{{$totalCountData->refund_person_count}} |
| 총 인원 |
@foreach($monthlyCountData as $row)
{{$row->total_person_count}} |
@endforeach
{{$totalCountData->total_person_count}} |
| 매출 |
신규 |
@foreach($combinedRevenueData as $data)
{{ number_format($data['new']) }} |
@endforeach
{{ number_format($totalRevenueData['new']) }} |
| 재등록 |
@foreach($combinedRevenueData as $data)
{{ number_format($data['renew']) }} |
@endforeach
{{ number_format($totalRevenueData['renew']) }} |
| 변경 |
@foreach($combinedRevenueData as $data)
{{ number_format($data['change']) }} |
@endforeach
{{ number_format($totalRevenueData['change']) }} |
| 기타 |
@foreach($combinedRevenueData as $data)
{{ number_format($data['etc']) }} |
@endforeach
{{ number_format($totalRevenueData['etc']) }} |
| 시험센터 대여 |
@foreach($combinedCalcData as $month => $data)
{{ number_format($data['lease']) }}
|
@endforeach
{{ number_format($totalCalcData['lease']) }} |
| B2B 쉐어 |
@foreach($combinedCalcData as $month => $data)
{{ number_format($data['b2b']) }}
|
@endforeach
{{ number_format($totalCalcData['b2b']) }} |
| 환불 |
@foreach($combinedRevenueData as $data)
{{ number_format($data['refund'] * -1) }} |
@endforeach
{{ number_format($totalRevenueData['refund'] * -1) }} |
| 총 매출 |
@foreach($combinedRevenueData as $data)
{{ number_format($data['total']) }} |
@endforeach
{{ number_format($totalRevenueData['total']) }} |
| 정산 |
사업팀 일반 |
@foreach($combinedCalcData as $data)
{{ number_format($data['business_general']) }} |
@endforeach
{{ number_format($totalCalcData['business_general']) }} |
| 사업팀 기타 |
@foreach($combinedCalcData as $month => $data)
{{ number_format($data['business_etc']) }}
|
@endforeach
{{ number_format($totalCalcData['business_etc']) }} |
| [F0DAD8]사업팀 합계 |
@foreach($combinedCalcData as $data)
{{ number_format($data['business_general'] + $data['business_etc']) }} |
@endforeach
{{ number_format($totalCalcData['business_general'] + $totalCalcData['business_etc']) }} |
| TNC팀 일반 |
@foreach($combinedCalcData as $data)
{{ number_format($data['tnc_general']) }} |
@endforeach
{{ number_format($totalCalcData['tnc_general']) }} |
| TNC팀 기타 |
@foreach($combinedCalcData as $month => $data)
{{ number_format($data['tnc_etc']) }}
|
@endforeach
{{ number_format($totalCalcData['tnc_etc']) }} |
| [D6D6F9]TNC팀 합계 |
@foreach($combinedCalcData as $data)
{{ number_format($data['tnc_general'] + $data['tnc_etc']) }} |
@endforeach
{{ number_format($totalCalcData['tnc_general'] + $totalCalcData['tnc_etc']) }} |