@extends('store.layouts.container')
@section('content')
SAR 271,632.09
25,5%
+4k Today
Total Orders of the month
10,313
12%
+13 Today
SAR 271,632.09
25,5%
+4k Today
Total Number of Activated Product
1,354,121
5%
+4k Today
{{__('dashboard.latest_orders')}}
| # |
{{__('dashboard.order_id')}} |
{{__('dashboard.order_user')}} |
{{__('dashboard.count_products')}} |
@foreach($latest_orders as $key=>$row)
| {{$key+1}} |
{{$row->id}} |
{{$row->user->name}} |
{{$row->productsStore(auth()->user()->store_id)->count()}} |
@endforeach
{{__('dashboard.products_total')}}
| # |
{{__('dashboard.product')}} |
{{__('dashboard.user_order')}} |
@foreach($most_sold_products as $key=>$row)
| {{$row->id}} |
{{$row->currentDescription->title}} |
{{$row->sold_count ?? '0'}} |
@endforeach
@endsection
@section('inner_js')
@endsection