PRICE LIST FOR: {{ $bussiness_type }} @if (count($location_name) > 0) @foreach ($location_name as $location) ({{ $location->name }} - {{ $location->location_id }}) @endforeach @else ( Company ) @endif Date : {{date('d/m/Y H:i:s')}}


@foreach ($products as $product) @endforeach
@lang('sale.product') Cost Price MRP Disc(%) Disc(V) @lang('lang_v1.selling_price') Profit(%) Profit(V)
{{ $product->product }} ( SKU-{{ $product->sub_sku }} ) {{ number_format($product->cost_price,2) }} {{ number_format($product->product_mrp, 2) }} {{ number_format($product->discount_amount, 2) }} {{ number_format($product->discount_value, 2) }} {{ number_format(($product->product_mrp - $product->discount_value), 2) }} @php $selling_price= $product->product_mrp - $product->discount_value; $profit_value=$selling_price-$product->cost_price; $profit_percent=($profit_value/$selling_price)*100; @endphp {{ number_format($profit_percent, 2) }} {{ number_format($profit_value, 2) }}