@extends($activeTemplate . 'layouts.master') @section('panel') @include('Template::user.reports.product_wise_profit_widget')
@lang('Product Name') @lang('Sales Quantity ') @lang('Sales Price') @lang('Purchase Price') @lang('Gross Profit') @forelse($productsWise as $productWise)
{{ __(@$productWise->product->name), }}
@lang('SKU:') {{ __($productWise->sku) }}
{{ @$productWise->total_sales_quantity ?? 0 }} {{ showAmount(@$productWise->total_sales_price) }} {{ showAmount(@$productWise->total_purchase_price) }} {{ showAmount(@$productWise->gross_profit) }} @empty @endforelse
@if ($productsWise->hasPages()) {{ paginateLinks($productsWise) }} ` @endif
@endsection @push('breadcrumb-plugins') @lang('Invoice Wise Profit') @endpush