@extends('core::layouts.master') @section('breadcrumb', 'Chi tiết đơn hàng') @section('content')
{{ Form::bsBoxOpen('Thông tin đơn hàng ' . $order['order_code']) }}
@foreach($order['items'] as $item) @endforeach
Tên sản phẩm Giá Số lượng Thành tiền
{{$item['name']}} {{number_format($item['price'])}} đ {{$item['quantity']}} {{number_format($item['quantity']*$item['price'])}} đ
Phí vận chuyển {{$order['shipping_fee']}}
Tổng cộng {{($order['total'])}}
{{ Form::bsBoxClose() }}
{{ Form::bsBoxOpen('Trạng thái') }}
{{ Form::bsBoxClose() }}
@endsection