|
Item
|
Price
|
@if ($invoice['movement_type'] == 'notice_debt')
@foreach ($invoice['account'] as $index => $account)
|
{{ @$account['name']['ar'] }}
|
{{ $invoice['account'][$index]['pivot']['total'] }}
|
@endforeach
@elseif ($invoice['movement_type'] == 'supplier_advance_payment')
@foreach ($invoice['payment'] as $index => $payment)
|
{{ $payment['description'] }}
|
{{ $payment['price'] }}
|
@endforeach
@else
@foreach ($invoice['product'] as $index => $product)
|
{{ $product['name'] }}
|
{{ $invoice['product'][$index]['pivot']['total'] }}
|
@endforeach
@foreach ($invoice['service'] as $index => $service)
|
{{ $service['name'] }}
|
{{ $invoice['service'][$index]['pivot']['total'] }}
|
@endforeach
@endif
| @lang('dashboard_invoices.total') |
${{ $invoice['invoice_total'] }}
|
@if ($invoice['movement_type'] == 'pay_purchase_invoice')
|
@lang('dashboard_sales_expenses.paid_amount')
|
${{ $invoice['paid'] }}
|
@endif