@extends('layouts.admin') @section('content')

Order Report Cancelled

@foreach ($orders as $order) @endforeach
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
{{$orders->links()}}
@endsection @push('style') @endpush @push('script') @endpush