Order #{{ $order->id }}
@if ($order->method == PaymentMethod::OFFLINE) View Slip @endif
@if ($order->items()->count() > 0)
@foreach ($order->items()->get() as $item) @endforeach
Course Period Price
{{ $item->course->name }} {{ $item->period ? $item->period->periodName : '-' }} {{ FormattingHelper::price($item->course->price) }}
Courses Fee {{ FormattingHelper::price($order->subtotal) }}
Discount {{ FormattingHelper::price($order->discount) }}
Total {{ FormattingHelper::price($order->total) }}
@endif