| {{ $traslations['purchase_invoice'] }} | @elseif($order->order_type == "purchase-returns"){{ $traslations['purchase_return_invoice'] }} | @elseif($order->order_type == "sales-returns"){{ $traslations['sales_return_invoice'] }} | @elseif($order->order_type == "sales"){{ $traslations['sales_invoice'] }} | @endif
|
|
|
|||
|
||||
| # | {{ $traslations['product'] }} | {{ $traslations['quantity'] }} | @if($order->warehouse->show_mrp_on_invoice){{ $traslations['mrp'] }} | @endif{{ $traslations['unit_price'] }} | {{ $traslations['total'] }} |
| {{ $loop->iteration }} | {{ $item->product->name }} | {{ $item->quantity . ' ' . $item->unit->short_name }} | @if($order->warehouse->show_mrp_on_invoice){{ $company->currency->symbol .''. $item->mrp }} | @endif{{ $company->currency->symbol .''. $item->single_unit_price }} | {{ $company->currency->symbol .''. $item->subtotal }} |
{{ $traslations['notes'] }}:
{{ $order->notes }}
| {{ $traslations['subtotal'] }} | {{ $company->currency->symbol .''. $order->subtotal }} |
| {{ $traslations['tax'] }} | {{ $company->currency->symbol .''. $order->tax_amount }} ({{ $order->tax_rate }}%) |
| {{ $traslations['discount'] }} | {{ $company->currency->symbol .''. $order->discount }} |
| {{ $traslations['shipping'] }} | {{ $company->currency->symbol .''. $order->shipping }} |
| {{ $traslations['total'] }} | {{ $company->currency->symbol .''. $order->total }} |
| {{ $traslations['total_items'] }} / {{ $traslations['qty'] }} : {{ $order->total_items . ' / ' . $order->total_quantity }} | {{ $traslations['paid_amount'] }}: {{ $company->currency->symbol .''. $order->paid_amount }} | {{ $traslations['due_amount'] }}: {{ $company->currency->symbol .''. $order->due_amount }} |
| {{ $traslations['payment_mode'] }} : @if($order->orderPayments) @foreach ($order->orderPayments as $currentOrderPayment) {{ $company->currency->symbol .'' . $currentOrderPayment->amount }} @if($currentOrderPayment->payment && $currentOrderPayment->payment->paymentMode && $currentOrderPayment->payment->paymentMode->name) ({{ $currentOrderPayment->payment->paymentMode->name }}) @endif @endforeach @else - @endif |