Manage Order

Manage Order

View and manage order #{{ $order->id }}.

@if ($order->method == PaymentMethod::OFFLINE) View Slip @endif {!! $order->status->badge() !!}
@if ($order->items()->count() > 0)
@foreach ($order->items()->get() as $item) @endforeach
# 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) }}
@endif
@include('admin.partials.orderAction') @include('admin.partials.orderPermission')