@extends('admin.layouts.app') @section('content') @include('admin.layouts.headers.cards')
Overview

Sales value

Performance

Total orders

Top Products

@foreach ($reports['topProducts'] as $topProduct) @endforeach
Name Selling Price Size Total Sale Amount
{{isset($topProduct->product->name) ? $topProduct->product->name : ''}} {{config('constant.CURRENCY_SIGN')}} {{isset($topProduct->variant) && isset($topProduct->variant->selling_price) ? $topProduct->variant->selling_price: '00.00'}} {{isset($topProduct->variant) && isset($topProduct->variant->size) ? $topProduct->variant->size->name: ''}} {{config('constant.CURRENCY_SIGN')}} {{$topProduct->totalcount}}

Top Tags

{{-- --}} @foreach ($reports['topTags'] as $key=>$tag) @if ($key < 5) @endif @endforeach
NameVisitors
{{isset($tag->name) ? $tag->name : ''}}
@include('admin.layouts.footers.auth')
@endsection @push('js') @endpush