@extends('layouts.main.master') @section('title') Quản lý đơn hàng JicaFood @endsection @section('description') Quản lý đơn hàng JicaFood @endsection @section('image') {{url(''.$banner[0]->image)}} @endsection @section('css') @endsection @section('content')

Chi tiết đơn hàng #{{$bill->code_bill}}

Ngày đặt hàng: {{date_format($bill->created_at,'d/m/Y')}}
Trạng thái thanh toán: @if ($bill->statu == 0) Đang xác nhận thanh toán @elseif($bill->statu == 1) Đã thanh toán @elseif($bill->statu == 2) Đang vận chuyển @elseif($bill->statu == 3) Hoàn thành đơn hàng @elseif($bill->statu == 4) Đơn hàng thất bại @endif

Địa chỉ giao hàng

a

Địa chỉ: {{$bill->cus_address}}

Số điện thoại: {{$bill->cus_phone}}

Thanh toán

Ghi chú

@if ($bill->note)

{{$bill->note}}

@else

Không có ghi chú

@endif
@foreach ($billdetail as $item) @endforeach
Sản phẩm Đơn giá Số lượng Tổng
{{number_format($item->price - ($item->price*($item->discount/100)))}}₫ {{$item->qty}} {{number_format(($item->price - ($item->price*($item->discount/100)))*$item->qty)}}₫
Khuyến mại 0₫
Phí vận chuyển 28.000₫
Tổng tiền {{number_format($bill->total_money)}}₫
@endsection