/home/techb158/ileadtechnology.com/resources/views/admin/revenue
NameSizeModeActions
completed.blade.php22670644editdlrm
download.blade.php69400644editdlrm
index.blade.php15630644editdlrm
paid.blade.php31980644editdlrm
payment.blade.php46560644editdlrm
pending.blade.php43740644editdlrm
view.blade.php61100644editdlrm
Edit: /home/techb158/ileadtechnology.com/resources/views/admin/revenue/view.blade.php (6110B)
@extends('admin.layouts.master') @section('title', 'Payout - Admin') @section('body')
@include('admin.message')

{{ __('adminstaticword.Invoice') }}

{{ __('adminstaticword.From') }}:
{{ $payout->payer['fname'] }}
Address: {{ $payout->payer['address'] }}
@if($payout->payer['state_id'] == !NULL) {{ $payout->payer->state['name'] }}, @endif @if($payout->payer['country_id'] == !NULL) {{ $payout->payer->country['name'] }} @endif
{{ __('adminstaticword.Phone') }}: {{ $payout->payer['mobile'] }}
{{ __('adminstaticword.Email') }}: {{ $payout->payer['email'] }}
{{ __('adminstaticword.To') }}:
{{ $payout->user['fname'] }}
{{ __('adminstaticword.Address') }}: {{ $payout->user['address'] }}
@if($payout->user['state_id'] == !NULL) {{ $payout->user->state['name'] }}, @endif @if($payout->user['country_id'] == !NULL) {{ $payout->user->country['name'] }}
@endif {{ __('adminstaticword.Phone') }}: {{ $payout->user['mobile'] }}
{{ __('adminstaticword.Email') }}: {{ $payout->user['email'] }}

{{ __('adminstaticword.OrderId') }}:  @foreach($payout->order_id as $order) @php $id= App\Order::find($order); @endphp {{ $id['order_id'] }}, @endforeach
{{ __('adminstaticword.PaymentMethod') }}: {{ $payout['payment_method'] }}
{{ __('adminstaticword.Currency') }}: {{ $payout['currency'] }}
{{ __('adminstaticword.Instructor') }} {{ __('adminstaticword.Currency') }} {{ __('adminstaticword.Total') }} {{ __('adminstaticword.PaymentMethod') }}
{{ $payout->user['fname'] }} {{ $payout['currency'] }} {{ $payout['pay_total'] }} {{ $payout->payment_method }}
@endsection @section('scripts') @endsection