Order ID:  

{{ $order->order_id }}

@if($order->status == \App\Enums\Status::Paid->value)

Order already paid

@if($order->event)

You've already purchased tickets for the event {{ $order->event->name }}

@endif @endif @if($order->status == \App\Enums\Status::Unpaid->value)

Complete Your Payment

@if($order->event)

You're about to purchase tickets for the event {{ $order->event->name }}

@endif @if($order->fundraise)

You're about to contribute to the fundraise: {{ $order->fundraise->title }}

@endif @if($order->contributionForm)

You're about to contribute to the fundraise: {{ $order->contributionForm->name }}

@endif

Amount Due:  

{{ strtoupper($order->currency->code) }} {{ number_format($order->amount(), 2) }}

Tick the box below and then select a date if you want to make this a recurring donation

@if($recur)
@endif
@if($recur)

When the date you selected arrives your card will be charged with the same amount you contributed now. This can be changed in settings

@endif