Dashboard

Hi Admin !

Total Product

{{count(App\Models\Product::get())}}

View Products

Orders

Customers

{{count(App\Models\Buyer::get())}}

See details

Recent Orders

@foreach(App\Models\Order::orderBy('id','DESC')->limit(5)->get() as $data) @endforeach
Order ID Customer Product Amount Payment Method Deliver Status
{{$data->order_id }} @php if ($data->buyer->image) { $img = asset('uploads/user/buyer/' . $data->buyer->image); } else { $img = asset('admin/images/defualt-profile-image.png'); } @endphp
{{$data->buyer->name}}
    @foreach ($data->products as $item)
  • {{$item->product->name }} ({{$item->quantity }})
  • @endforeach
{{ $data->total}} {{$data->payment->payment_method }} @php if ($data->status == 'Ordered') { $class = "secondary"; } elseif ($data->status == 'Confirmed') { $class = "primary"; } elseif ($data->status == 'Delivered') { $class = "success"; } elseif ($data->status == 'Returned') { $class = "warning"; } elseif ($data->status == 'Canceled') { $class = "danger"; } @endphp {{$data->status}}

Best Selling Products

@foreach(bestSellingPrdouct() as $item) @endforeach
{{$item->product->price}}
Price
{{$item->total}}
Orders
{{$item->product->price * $item->total}}
Amount
Showing 4 of 25 Results

8547

Stock
541200
32%
TAD

895

Stock
75030
79%

4100

Stock
11260
57%
Showing 4 of 25 Results

250

Order
54120
80%

210

Order
48000
75%

199

Order
11260
57%
Showing 4 of 25 Results
Recent Activity
Purchase by James Price

Product noise evolve smartwatch

02:14 PM Today
Added new style collection

By Anchor

9:47 PM Yesterday

Natasha Carey have liked the products

Allow users to like products in your WooCommerce store.

25 Dec, 2021
Today offers by Digitech Galaxy

Offer is valid on orders of Rs.500 Or above for selected products only.

12 Dec, 2021
Favoried Product

Esther James have favorited product.

25 Nov, 2021
Flash sale starting Tomorrow.

Flash sale by Finolex

22 Oct, 2021
Monthly sales report

2 days left notification to submit the monthly sales report. Reports Builder

15 Oct
Frank Hook Commented

" A product that has reviews is more likable to be sold than a product. "

26 Aug, 2021
Products Reviews

" Great product and looks great, lots of features. "

- by Force Medicines

" Amazing template, very easy to understand and manipulate. "

- by Henry Baird

"Very beautiful product and Very helpful customer service."

- by Zoetic Fashion

" The product is very beautiful. I like it. "

- by Nancy Martino
Customer Reviews
4.5 out of 5
Total 5.50k reviews
5 star
2758
4 star
1063
3 star
997
2 star
227
1 star
408
@endsection