@extends('ecommerce::frontend.layout.main2') @section('title') {{ $ecommerce_setting->site_title ?? 'Order Details' }} @endsection @section('description') {{ $ecommerce_setting->site_description ?? '' }} @endsection @section('content')

{{trans('file.Order Details')}}

#{{ $sale->reference_no }}
{{ date('d M, Y', strtotime($sale->created_at)) }}
@if(!empty($sale)) @if(!empty($products)) @foreach($products as $product) @endforeach @endif @endif
Product Qty Price
{{ $product->name }} {{ $product->qty }} {{ $currency->symbol ?? $currency->code }}{{ number_format($product->net_unit_price, 2) }}
Shipping Cost (+) {{ $currency->symbol ?? $currency->code }}{{ number_format($sale->shipping_cost ?? 0, 2) }}
Discount (-) {{ $currency->symbol ?? $currency->code }}{{ number_format($sale->coupon_discount ?? 0, 2) }}
Grand Total {{ $currency->symbol ?? $currency->code }}{{ number_format(($sale->grand_total - $sale->coupon_discount), 2) }}
@endsection