@extends('shared.admin') @section('content')

Users

All Shopee Orders

@foreach($orders as $order) @endforeach
Mã đơn hàng Tên khách hàng Sản phẩm Địa chỉ giao hàng Trạng thái Thành tiền
#{{ $order->order_sn }} {{ $order->buyer_username }} @foreach($order->item_list as $item)

{{ $item->item_name }}

@endforeach

{{ $order->recipient_address->name }} / {{ $order->recipient_address->phone }}

{{ $order->recipient_address->full_address }}

{{ $order->order_status }}

{{ Common::numberFormat($order->total_amount) }} VND

{{ $order->payment_method }}

@if(count($orders)) @else

Không tìm thấy đơn hàng nào

@endif
@endsection