@foreach($order->washCategories as $category)
| {{ $category->name }} |
{{ $order->company->formatPrice($category->pivot->price) }} |
@endforeach
| Subtotal: |
{{ $order->company->formatPrice($order->subtotal) }} |
@if($order->discount_amount > 0)
| Discount @if($order->coupon_code)({{ $order->coupon_code }})@endif: |
-{{ $order->company->formatPrice($order->discount_amount) }} |
@endif
| VAT ({{ $order->company->getVatRate() * 100 }}%): |
{{ $order->company->formatPrice($order->vat_value) }} |
| TOTAL: |
{{ $order->company->formatPrice($order->total) }} |