{{ __('Order Summary') }}

@foreach($order['items'] as $item)
{{ $item['name'] }}
@if($item['discount'])
{{ $item['discount'] }} {{ __('Discount Applied') }}
@endif
@if($item['discount']) {{ $item['original_price'] }} @endif {{ $item['amount_formatted'] }}
@endforeach @foreach($order['taxes'] as $tax)
{{ $tax['name'] }} ({{ ucfirst($tax['type']) }})
{{ $tax['amount_formatted'] }}
@endforeach
{{ __('Total') }}
{{ $order['total_formatted'] }}