Hello {{ Auth::guard('customers')->user()->name }}
Orders placed
{{ $totalOrders }}
Items in Cart
{{ $totalProductQuantityCustomerCart }}
Wishlist
{{ $totalWishlist }}
My orders
@if($myOrders->count() == 0)
{{ "You did't order any product,Please go to shop.You can buy our new products." }}
@endif @foreach($myOrders as $myOrder)Order
#{{ $myOrder->invoice_code }}
{{ \App\Lib\Enumerations\PaymentStatus::getPaymentStatus($myOrder->payment_status) }}
Total Amount ৳
: {{ $myOrder->total_amount }}
Payment Method
: {{ $myOrder->payment_method }}
Order Date: {{ $myOrder->date }}
Delivery Status
: {{ \App\Lib\Enumerations\DeliveryStatus::getDeliveryStatusForCustomer($myOrder->delivery_status)}}
@endforeach