@extends('Common::admin.layout.page') @section('page')
@foreach($counters as $count)

{{ $count['count'] }}

{{ $count['title'] }}

@lang('More')
@endforeach

@lang('Total sales')

@lang('Latest orders')

@foreach($latest_orders as $order) @endforeach
@lang('Order ID') @lang('Client') @lang('Status') @lang('Total') @lang('Created at')
{{ $order->id }}# {{ $order->myuser->name }} {{ $order->status }} {{ $order->total }} {{ $order->created_at }}

@lang('Latest products')

@endsection