@extends('admin::index') @section('content')

{{ $header or trans('admin.title') }} {{ $description or trans('admin.description') }}

@include('partials.error') @include('admin::partials.exception') @include('admin::partials.toastr')
{{ __('Sản phẩm') }}
{{ number_format($total['products']) }}
{{ __('Khách hàng') }}
{{ number_format($total['customers']) }}
{{ __('Đơn hàng hôm nay') }}
{{ number_format($total['orders']) }}

{{ __('Đơn hàng') }}

@if($yearRange)
Năm: {{ $yearRange }}
@endif
{{ Form::open(array('route' => ['dashboard.index'], 'method' => 'GET', 'id' => 'rangeForm')) }} {{ Form::close() }}

{{ __('Top sản phẩm') }}

@foreach($products as $product) @endforeach
{{__('Sản phẩm')}} {{__('Đã bán')}}
{{ $product->name }} {{ number_format($product->quantity) }}
@endsection @push('styles') @endpush