@extends($_layout . 'main') {{-- khai báo title --}} @section('title', 'Dashboard') {{-- tên modul xuất hiện trong sub header --}} @section('module.name', 'Dashboard') @section('content')

Biểu đồ lượt view

  • {{$monthViewTotal > 0 ?'+':''}} {{number_format($monthViewTotal, 0, ',', '.')}}% / tháng

Tổng quan gian hàng

@foreach ($showroomStatistics as $showroom) @endforeach
STT Tên gian hàng Lượt view
{{$loop->index+1}} {{$showroom->name}} {{$showroom->view_total}}

Đơn hàng

@foreach ($merchantTemplates as $template) @php $p = crazy_arr($template->package_data); @endphp @endforeach
{{$template->template_name}}
{{$p->price_format}} Hết hạn: {{date('d/m/Y', strtotime($template->expired_at))}}
@endsection @section('js') {{-- --}} @php $data = []; $detail = []; $barColors = []; $colorList = ['#ffac16', '#0b62a4']; if ($statistics && count($statistics)) { $data = $statistics; foreach ($statistics as $i => $d) { // $date = date('d/m/Y', strtotime($d['view_date'])); // $data[] = [$date, $d['view_total']]; $barColors[] = $colorList[$i % 2]; $detail[] = $d; } } add_js_data('merchant_data', [ 'statistics' => $data, 'table' => $detail, 'barColors' => $barColors ]); @endphp @endsection