View and manage order #{{ $order->id }}.
# | Course | Period | Price |
---|---|---|---|
{{ $item->id }} | {{ $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) }} |