{!!trans('x.Sold by Country')!!}
@foreach($ordersByCountry as $countryCode => $orders)
@endforeach
{{ trans('x.Country') }} | {{ trans('x.Orders') }} | {{ trans('x.Confirmed') }} | {{ trans('x.Items') }} | {{ trans('x.Total') }} | |
---|---|---|---|---|---|
{{ Config::get('countries_'.Localization::getCurrentLocale().'.'.$countryCode) }} | {{ $orders->count() }} | {{ $orders->where('status', 'confirmed')->count() }} | {{ $orders->sum('items_qty') }} | {{ X::prettyPrice($orders->sum('total')) }} |