@extends('layouts.master') @section('page_title', 'View Order') @section('title', 'Order Details') @section('main_item', 'Orders') @section('sub_item', 'Order Details') @section('content')
{{ $sale->customer->city_id->name_en }}
@else{{ $sale->customer->other_city }}
@endif @else{{ $sale->customer->other_city }}
@endif {{ !empty($sale->customer->district) ? $sale->customer->district->name_en : 'N/A' }}| Order Sub Total: | {{ !empty($sale->currency_type) ? App\PaymentAccount::CURRENCIES[$sale->currency_type] : 'Rs.' }} {{ number_format($sale->invoice_total, 2) }} | ||
|---|---|---|---|
| Discount: | (-) | {{ !empty($sale->currency_type) ? App\PaymentAccount::CURRENCIES[$sale->currency_type] : 'Rs.' }} {{ number_format($sale->invoice_discount, 2) }} | |
| Additional Charge: | (+) | ₨ {{ number_format($sale->additional_charge, 2) }} | |
| Delivery Fee: | (+) | @if ($sale->delivery_fee == 0) Free of Charge @else {{ !empty($sale->currency_type) ? App\PaymentAccount::CURRENCIES[$sale->currency_type] : 'Rs.' }} {{ number_format($sale->delivery_fee, 2) }} @endif | |
| Order Net Total: | {{ !empty($sale->currency_type) ? App\PaymentAccount::CURRENCIES[$sale->currency_type] : 'Rs.' }} {{ number_format($sale->invoice_nettotal, 2) }} |