@foreach($order->lines as $line)
{{$line->name}}
@if($line->quantity > 0)
X {{$line->quantity}}
@endif
|
{{Fnx::printPrice($line->unit_price)}} |
@endforeach
@if($order->discount > 0)
| {{Fnx::translate('shop_discount')}} |
{{Fnx::printPrice($order->discount )}} |
@endif
@if($order->shipping > 0)
| {{Fnx::translate('shop_shipping_cost')}} |
{{Fnx::printPrice($order->shipping )}} |
@endif
@if($order->overrun > 0)
| {{Fnx::translate('shop_overrun')}} |
{{Fnx::printPrice($order->overrun )}} |
@endif
@if($order->taxes > 0)
| {{Fnx::translate('shop_taxes')}} |
{{Fnx::printPrice($order->taxes )}} |
@endif
| {{Fnx::translate('shop_total')}} |
{{Fnx::printPrice($order->subtotal + $order->taxes + $order->shipping - $order->discount)}} |