{{ ++$i }} |
{{ $service->service_name }} |
{{ $service->amount }} |
{{ $service->unit_price }} |
{{ number_format($service->unit_price * $service->amount, 2, '.', ',') }}
|
{{ number_format($service->unit_price * $service->amount * $vat, 2, '.', ',') }}
|
@endif
@endforeach
@foreach ($discounts as $discount)
@if ($discount->value > 0)
{{ ++$i }} |
{{ $discount->name }} |
1 |
{{ number_format(-1 * abs($discount->value), 2, '.', ',') }}
|
{{ number_format(-1 * abs($discount->value), 2, '.', ',') }}
|
{{ number_format(-1 * abs($discount->value) * $vat, 2, '.', ',') }}
|
@endif
@endforeach