@extends('layouts.client') @section('title') Đơn hàng của tôi @endsection @section('content-clients')
@include('clients.blocks.categoriesUser')

Đơn hàng của tôi

@foreach($Orders as $order)
{{ \Carbon\Carbon::parse($order->created_at)->format('d-m-Y H:i:s') }} MaHD: {{$order->id}} {{count($order->OrderDetail)}} sản phẩm
@if($order->trang_thai == 0)
Đang xử lý
@elseif($order->trang_thai ==1)
Đang giao
@elseif($order->trang_thai ==2)
Hoàn tất
@elseif($order->trang_thai ==3)
Đã hủy
@elseif($order->trang_thai ==4)
Trả hàng
@else
Đặt hàng
@endif
@foreach($order->OrderDetail as $orderProduct)
@if(empty($orderProduct->Product->anh)) @else @endif
@if(empty($orderProduct->Product->ten_san_pham)) Sản phẩm không tồn tại @else {{$orderProduct->Product->ten_san_pham}} @endif
Số lượng: {{$orderProduct->so_luong}}
{{number_format($orderProduct->gia,0,',','.')}}đ
@endforeach
Xem chi tiết >
Thành tiền: {{number_format($order->tong_tien,0,',','.')}}đ
Bạn cần hỗ trợ? Liên hệ ngay với chúng tôi
Hỗ trợ @if($trang_thai == 2) Trả hàng @endif
@endforeach
@if(count($Orders) == 0)
No Orders

Bạn chưa có đơn hàng nào

Cùng khám phá hàng ngàn sản phẩm tại Gia Dụng Văn Hậu Shop nhé!

Khám phá ngay
@endif
@endsection @section('stylesheetAccount') @endsection