@extends('user.layouts.master') @section('title') orders details @endsection @section('css') @endsection @section('content')
Status
{!! $row->getStatusColor() !!}
Last Update
{{$row->updated_at}}
Total
{{$row->total}}
Order information :: {{$row->order_number}}
@foreach ($row->order_item as $items) @endforeach
Image Price Quantity Total
EPSION Plaster Printer ${{$items->price_per_unit}} {{$items->quantity}} ${{$row->total}}

Customer

{{$row->customer->orders()->count()}} order(s)

{{$row->customer->name()}}

{{$row->customer->email}}

{{$row->customer->phone}}


Shipping information
{{$row->shipping_address}}
{{$row->billing_address}}
Store
Quantity {{$row->order_items()}}
Sub total {{$row->subtotal}}
discount {{$row->discount}}
total {{$row->total}}
payment type {!! $row->getOrderTypeColor() !!}
coupon {{$row?->coupon?->code}}
placed at {{$row->placed_at}}
completed at {{$row->completed_at}}
cancelled at {{$row->cancelled_at}}
ref id {{$row->ref_id}}
@endsection @section('js') @endsection