@extends('layout.app') @section('title', __('sale_returns')) @section('content')
@csrf
@if (feature('barcodes')) @endif @foreach ($sale->productSales as $product) @if (feature('barcodes')) @endif @endforeach
{{ __('name') }}{{ __('code') }}{{ __('quantity') }} {{ __('purchase_cost') }} {{ __('tax') }} {{ __('sub_total') }} {{ __('action') }}
{{ substr($product->product->name, 0, 20) }} {{ $product->product->code }} {{ $product->net_unit_price }} {{ $product->tax }} {{ $product->total }}
{{ __('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' }}
@endsection @push('scripts') @endpush