@foreach ($detail['product_profit_details'] as $product)
@endforeach
Product Name |
Selling Price / Unit |
Margin Price / Unit |
Quantity |
Total Selling Price |
Total Margin Price |
Profit |
Tax Amount |
{{ $product['product_name'] }} |
₹ {{ number_format($product['selling_price'], 2) }} |
₹ {{ number_format($product['margin_price'], 2) }} |
{{ number_format($product['quantity'], 2) }} |
₹ {{ number_format(($product['selling_price'] * $product['quantity']), 2) }} |
₹ {{ number_format(($product['margin_price'] * $product['quantity']), 2) }} |
₹{{ number_format($product['profit'], 2) }} |
₹ {{ number_format($product['tax_amount'], 2) }} |