@extends($_layout . 'main') {{-- khai báo title --}} @section('title', "Báo cáo tháng $month năm $year") {{-- tên modul xuất hiện trong sub header --}} @section('module.name', 'Báo cáo tháng') @section('content') @php $user_total = $data[0]; $customer_total = $data[1]; $customer_of_customer_total = 0; $reward_total = 0; $columns = [[], []]; foreach ($data as $i => $total) { $reward_total += $total; if ($i > 1) { $customer_of_customer_total += $total; } if ($i > 4) { // $columns[1][] = $total; } elseif ($i > 2) { $columns[1][] = $total; } elseif ($i > 0) { $columns[0][] = $total; } } $y = date('Y'); if ($reward_total > 0) { $ust = ((int) (($user_total / $reward_total) * 10000)) / 100; $ctt = ((int) (($customer_total / $reward_total) * 10000)) / 100; $cct = ((int) (($customer_of_customer_total / $reward_total) * 10000)) / 100; } else { $ust = 0; $ctt = 0; $cct = 0; } @endphp

{{ number_format($myRewards + $branchRewards, 2, ',', '.') }} LI

{{ $reward_total }}
{{ $ust }}% Doanh thu của tôi
{{ $ctt }}% Doanh thu trực tiếp
{{ $cct }}% Doanh thu gián tiếp
{{-- Doanh thu cua toi --}}
{{-- Doanh thu trx tiep --}}
{{-- Doanh thu gián tiếp --}}
/
@foreach ($columns[0] as $total)
Khách hàng cấp {{ $loop->index + 1 }} {{ number_format($total, 2, ',', '.') }}LI
@endforeach
@foreach ($columns[1] as $total)
Khách hàng cấp {{ $loop->index + 3 }} {{ number_format($total, 2, ',', '.') }}LI
@endforeach

Danh trực tiếp

Doanh thu của tôi trong tháng
+{{ number_format($myRewards, 2, ',', '.') }}LI

Doanh thu gián tiếp

Doanh thu từ khách hàng cà đại lý cấp dưới
+{{ number_format($branchRewards, 2, ',', '.') }}LI

Tổng doanh thu

Tổng doanh thu trong tháng
+{{ number_format($myRewards + $branchRewards, 2, ',', '.') }}LI
@endsection @section('js') @endsection @section('css') @endsection