@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.header', ['title' => 'Quản lý đơn hàng'])
| STT | Khách hàng | Số lượng | Tổng tiền | Thời gian đặt hàng | Trạng thái | Thao tác |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $order->user->full_name }} | {{ $order->items->sum('quantity') }} | {{ number_format($totalAmount, 0, ',', '.') }} đ | {{ $order->created_at }} | @if($order->status == 'Pending') {{ $order->status }} @elseif($order->status == 'Success') {{ $order->status }} @elseif($order->status == 'Cancelled') {{ $order->status }} @endif | Xem chi tiết |