@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