@extends('layouts.backend.app') @section('content') @include('layouts.backend.partials.headersection',['title'=> 'Payout'])

{{ __('Request Information') }}

@if($info->user->role_id==3) Go to Profile @endif
@csrf
@if($info->status==2) @endif

{{ __('Transactional Information') }}

@if(!empty($paypal))
{{ __('Paypal') }}
{{ __('Transactional Email') }}: {{ $paypal->content }}
@endif @if(!empty($bank))
{{ __('Bank Details') }}
@php $json=json_decode($bank->content); @endphp

{{ __('Bank Name') }}: {{ $json->bank_name }}

{{ __('Branch Name') }}: {{ $json->branch_name }}

{{ __('Account Holder Name') }}: {{ $json->holder_name }}

{{ __('Account Number') }}: {{ $json->account_number }}

@endif

{{ __('Admin Information') }}

@if(!empty($info->admin))

{{ __('Name') }}: {{ $info->admin->name }}

{{ __('Email') }}: {{ $info->admin->email }}

{{ __('Updated At') }}: {{ $info->updated_at->diffforHumans() }}

@endif
{{ __('Transection History') }}
@foreach($transections as $row) @endforeach
{{ __('Transaction ID') }} {{ __('Amount') }} {{ __('Payout Method') }} {{ __('Date Processed') }} {{ __('Payout Status') }} {{ __('View') }}
#{{ $row->id }} {{ $row->amount }} {{ strtoupper($row->payment_mode) }} {{ $row->created_at->format('Y-F-d') }} @if($row->status==0) {{ __('Canceled') }} @elseif($row->status==1) {{ __('Completed') }} @elseif($row->status==2) {{ __('Pending') }} @endif
{{ $transections->links() }}

{{ __('Overview Of Earnings') }}

  • {{ __('Amount Of Sell') }} {{ $total_amount }}
  • {{ __('Commission') }} {{ $total_commission }}
  • {{ __('Earnings') }} {{ $total_amount-$total_commission }}
@endsection @section('script') @endsection