Invoice Id |
Invoice Date |
Total Selling Price |
Total Margin Price |
Curent Profit |
Total Profit |
Tax Amount |
Action |
@foreach ($profitDetails as $index => $detail)
{{$detail['invoice_id']}} |
{{\Carbon\Carbon::parse($detail['invoice_date'])->format('d-m-Y')}} |
₹ {{ number_format($detail['total_selling_price'], 2) }} |
₹ {{ number_format($detail['total_margin_price'], 2) }} |
₹ {{ number_format($detail['current_profit'], 2) }} |
₹ {{ number_format($detail['total_profit'], 2) }} |
₹ {{ number_format($detail['tax_amount'], 2) }} |
|
@endforeach
@foreach ($profitDetails as $index => $detail)
EMI Date |
EMI Amount |
Paid Date |
Due Days |
Penalty Amount |
Discount Amount |
Paid Amount |
@foreach ($detail['emi_profit_details'] as $product)
{{ $product['emi_date'] }} |
₹{{ $product['emi_amount'] }} |
{{ $product['paid_date'] }} |
{{ $product['due_date'] ?? 0}} |
₹{{ $product['penalty'] ?? 0 }} |
₹{{ $product['discount_amount'] ?? 0}} |
₹{{ $product['total_amount'] ?? 0 }} |
@endforeach
@endforeach