{{ ctrans('texts.order') }}

@isset($this->context['bundle'])
@foreach($this->items() as $item) @if($item['quantity'] > 0)
{{ $item['quantity'] }} x {{ $item['notes'] }} {{ $item['total'] }}
@endif @endforeach
{{ ctrans('texts.one_time_purchases') }} {{ \App\Utils\Number::formatMoney($this->oneTimePurchasesTotal(), $this->subscription->company) }}
{{ ctrans('texts.recurring_purchases') }} {{ \App\Utils\Number::formatMoney($this->recurringPurchasesTotal(), $this->subscription->company) }}
{{ ctrans('texts.subtotal') }} {{ $this->subtotal() }}
@if($this->discount() > 0)
{{ ctrans('texts.discount') }} {{ \App\Utils\Number::formatMoney($this->discount(), $this->subscription->company) }}
@endif
{{ ctrans('texts.total') }} {{ $this->total() }}
@endif