@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: | (-) | Rs. {{ number_format($sale->invoice_discount, 2) }} | |
| Delivery Fee: | (+) | @if ($sale->fake_delivery == 0) Free of Charge @else Rs. {{ number_format($sale->fake_delivery, 2) }} @endif | |
| Agent Commission: | (+) | @if ($sale->agent_commission == 0) Free of Charge @else Rs. {{ number_format($sale->agent_commission, 2) }} @endif | |
| Order Net Total: | Rs. {{ number_format($sale->invoice_nettotal, 2) }} |