@lang('messages.date'): {{ @format_date($sell->transaction_date) }}
@php $defects = json_decode($sell->repair_defects, true); @endphp @if(!empty($defects)) @foreach($defects as $product_defect) {{$product_defect['value']}} @if(!$loop->last) {{','}} @endif @endforeach @endif
# | {{ __('messages.date') }} | {{ __('purchase.ref_no') }} | {{ __('sale.amount') }} | {{ __('sale.payment_mode') }} | {{ __('sale.payment_note') }} |
---|---|---|---|---|---|
{{ $loop->iteration }} | {{ @format_date($payment_line->paid_on) }} | {{ $payment_line->payment_ref_no }} | {{ $payment_line->amount }} |
{{ $payment_types[$payment_line->method]}}
@if($payment_line->is_return == 1)
( {{ __('lang_v1.change_return') }} ) @endif |
@if($payment_line->note) {{ ucfirst($payment_line->note) }} @else -- @endif |
{{ __('sale.total') }}: | {{ $sell->total_before_tax }} | |
---|---|---|
{{ __('sale.discount') }}: | (-) | {{ $sell->discount_amount }} @if( $sell->discount_type == 'percentage') {{ '%'}} @endif |
{{session('business.rp_name')}}: | (-) | {{ $sell->rp_redeemed_amount }} |
{{ __('sale.order_tax') }}: | (+) |
@if(!empty($order_taxes))
@foreach($order_taxes as $k => $v)
{{$k}} - {{ $v }} @endforeach @else 0.00 @endif |
{{ __('sale.shipping') }}: @if($sell->shipping_details)({{$sell->shipping_details}}) @endif | (+) | {{ $sell->shipping_charges }} |
{{ __('sale.total_payable') }}: | {{ $sell->final_total }} | |
{{ __('sale.total_paid') }}: | {{ $total_paid }} | |
{{ __('sale.total_remaining') }}: | {{ $sell->final_total - $total_paid }} |