{{-- Part of virtualset project. --}} @extends('_global.admin.admin') @section('admin-outer-body')

Monthly

{{ number_format($month, 0) }}

Weekly

{{ number_format($week, 0) }}

Daily

{{ number_format($daily, 0) }}

More
Last Orders
@foreach($lastOrders as $lastOrder) @endforeach
Product Format Price
{{ $lastOrder->title }} {{ $lastOrder->format_title }} ${{ $lastOrder->price }}
More
Best Sellers
@foreach($bestSellers as $bestSeller) @endforeach
Product Price Ordered
{{ $bestSeller->title }} ${{ $bestSeller->price }} {{ $bestSeller->ordered }}
More
Most Viewed Products
@foreach($mostVieweds as $mostViewed) @endforeach
Product Viewed
{{ $mostViewed->title }} {{ $mostViewed->hits }}
More
Last Comments
@foreach($lastComments as $lastComment) @endforeach
Product Name Rating
{{ $lastComment->title }} {{ $lastComment->name }} {{ $lastComment->rating }}
@stop