{{ __('Order Report Cancelled') }}
Sl. | {{ __('Student Details') }} | {{ __('Order Number') }} | {{ __('Sub Total') }} | {{ __('Discount') }} | {{ __('Platform Charge') }} | {{ __('Grand Total') }} | {{ __('Payment Method & Details') }} | {{ __('Total Admin Commission') }} | {{ __('Total Instructor Commission') }} | {{ __('Status') }} |
---|---|---|---|---|---|---|---|---|---|---|
{{ $loop->iteration }} |
{{ __('Name') }}: {{ @$order->user->student->name }} {{ __('Email') }}: {{ @$order->user->email }} |
{{ @$order->order_number }} | @if (get_currency_placement() == 'after') {{ @$order->sub_total }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ @$order->sub_total }} @endif | @if (get_currency_placement() == 'after') {{ @$order->discount }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ @$order->discount }} @endif | @if (get_currency_placement() == 'after') {{ @$order->platform_charge }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ @$order->platform_charge }} @endif | @if (get_currency_placement() == 'after') {{ @$order->grand_total }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ @$order->grand_total }} @endif |
{{ ucfirst(@$order->payment_method) }}
@if (@$order->payment_method)
{{ __('Payment Currency') }}: {{ $order->payment_currency }} {{ __('Conversion Rate') }} : {{ number_format($order->conversion_rate, 2) }} {{ __('Payment') }}: {{ number_format($order->grand_total_with_conversation_rate, 2) }} @if(@$order->payment_method == 'bank'){{ __('Deposit Bank Name') }}: {{ @$order->bank->name }} {{ __('Deposit By') }}: {{ $order->deposit_by }} {{ __('Deposit Slip') }}: {{ __('Download') }} @endif @endif |
@if (get_currency_placement() == 'after') {{ $order->total_admin_commission }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $order->total_admin_commission }} @endif | @if (get_currency_placement() == 'after') {{ $order->total_owner_balance }} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{ $order->total_owner_balance }} @endif | {{ __('Cancelled') }} |