@extends('layouts.admin') @section('content-admin')
Ngày Đặt Hàng: {{ \Carbon\Carbon::parse($order->created_at)->format('d-m-Y H:i:s') }}
Tên Khách Hàng: @if($order->ho_ten == null) {{$order->User->ho_ten}} @else {{$order->ho_ten}} @endif | Số Điện Thoại: @if($order->ho_ten == null) {{$order->User->so_dien_thoai}} @else {{$order->so_dien_thoai}} @endif
Email: @if($order->ho_ten == null) {{$order->User->email}} @else {{$order->email}} @endif
Địa Chỉ: {{ $order->dia_chi }}, {{$order->Wards->name}}, {{$order->District->name}}, {{$order->Province->name}}
Ghi Chú: {{ $order->ghi_chu != null ? $order->ghi_chu : 'Không có' }}
Khuyến Mãi Đã Áp Dụng: @if($order->promotion) {{ $order->promotion->ten_khuyen_mai }} - @if($order->promotion->hinh_thuc_giam_gia == 0) [{{ number_format($order->promotion->gia_tri_khuyen_mai,0,',','.') }} VND] @else [{{ $order->promotion->gia_tri_khuyen_mai }} %] @endif @else Không có @endif
# | Tên Sản Phẩm | Số Lượng | Giá | Thành Tiền |
---|---|---|---|---|
{{ $loop->iteration }} | {{ $item->Product->ten_san_pham}} | {{ $item->so_luong }} | {{ number_format($item->gia,0,',','.') }} VND | {{ number_format($item->so_luong * $item->gia,0,',','.') }} VND |