PRONDL


@lang('reports.Sales_by_Product/Service_Detail')

@if($from)@lang('reports.from') {{ $from }} @endif @if($to) @lang('reports.to') {{ $to }} @endif

@lang('reports.sales_product_detail_sum')

{{ $total }}

@php $total_value = 0; @endphp @foreach ($products as $product) @foreach ($product->collection as $collection) @php $total_value += $collection->pivot->total_without_tax - $collection->pivot->discount; @endphp @endforeach @endforeach
الاسم SKU @lang('reports.Quantity') السعر السعر بدون ضريبة الخصم الاجمالي قيمة المنتج
{{ $product->name . ' ( ' . $product->sale_type . ' )' }} {{ $product->sku }} {{$collection->pivot->quantity}} {{$collection->pivot->price}} {{$collection->pivot->total_without_tax}} {{$collection->pivot->discount}} {{$collection->pivot->total}} {{$collection->pivot->total_without_tax - $collection->pivot->discount}}