@extends('layouts.backoffice') @section('content')
The platform administration panel
Total Revenue
Total New Orders
Total Store Orders
Total Customers
Total Barter Offers
Marketplace Items
Marketplace Services
{{ $dashboard['top_product_quantity_by_id'][$product->id] }}
{{ $product->name }}
Customer | Country | Phone | Status |
---|---|---|---|
![]() {{ $customer->first_name ? ($customer->first_name.' '.$customer->last_name) : ('No Name '.$customer->last_name) }}{{ $customer->code }} |
{{ getCountryNameByKey($customer->country) ?? 'Unknown' }} |
{{ $customer->mobile ?? '-' }} |
@php $status = "Unknown"; if($customer->status == 1){ $status = 'Available'; } elseif($customer->status == 0){ $status = 'InActive'; } elseif($customer->status == -10){ $status = 'Blocked'; } @endphp {!! $status !!} |
Code | Region | Store | Amount | Status |
---|---|---|---|---|
![]() {{ $order->code }}{{ $order->customer->first_name ? ($order->customer->first_name.' '.$order->customer->last_name) : ('No Name '.$order->customer->last_name) }} |
{{ $order->region->name }} |
{{ is_null($order->store_id) ? '-' : $order->store->name }} |
{{ $order->total_amount }} |
@php $status = "Unknown"; if($order->status == 1){ $status = 'Completed'; } elseif($order->status == 0){ $status = 'Pending'; } elseif($order->status == 2){ $status = 'Picked Up'; } @endphp {!! $status !!} |