@extends('admin.layouts.master') @section('title', 'Payout - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('Invoice') }} @endslot @slot('menu1') {{ __('Instructor') }} @endslot @slot('menu2') {{ __('Invoice') }} @endslot @slot('menu3') {{ __('Invoice') }} @endslot @endcomponent

{{ __('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