@extends('layout.app') @section('title', __('sale_returns')) @section('content') @csrf {{ __('name') }} @if (feature('barcodes')) {{ __('code') }} @endif {{ __('quantity') }} {{ __('purchase_cost') }} {{ __('tax') }} {{ __('sub_total') }} {{ __('action') }} @foreach ($sale->productSales as $product) {{ substr($product->product->name, 0, 20) }} @if (feature('barcodes')) {{ $product->product->code }} @endif {{ $product->net_unit_price }} {{ $product->tax }} {{ $product->total }} @endforeach {{ __('total_item') }} ({{ $sale->total_qty }}) {{ __('total_product') }} {{ $sale->item }} {{ __('sub_total') }} {{ $currency->symbol ?? '$' }} {{ $sale->total_price }} {{ __('order_tax') }} {{ $currency->symbol ?? '$' }} {{ $sale->order_tax_rate ?? '0.00' }} {{ __('order_discount') }} {{$currency->symbol ?? '$' }} {{ $sale->order_discount ?? '0.00' }} {{ __('shipping_cost') }} {{ $currency->symbol ?? '$' }} {{ $sale->order_discount ?? '0.00' }} {{ __('grand_total') }} {{ $currency->symbol ?? '$' }} {{ $sale->grand_total ?? '0.00' }} {{ __('note') }} {!! $sale->note !!} {{ __('back') }} {{ __('return') }} @endsection @push('scripts') @endpush
({{ $sale->total_qty }})
{{ $sale->item }}