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

{{ __('Order Report Pending') }}

@foreach ($orders as $order) @endforeach
{{ __('Student Name') }} {{ __('Order Number') }} {{ __('Sub total') }} {{ __('Discount') }} {{ __('Platform Charge') }} {{ __('Grand Total') }} {{ __('Payment Method & Details') }} {{ __('Total Admin Commission') }} {{ __('Total Instructor Commission') }} {{ __('Action') }}
{{ @$order->user->student->name }} {{ @$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
{{$orders->links()}}
@endsection @push('style') @endpush @push('script') @endpush