@extends('layouts.backend.app') @section('content') @php $currency=\App\Options::where('key','currency_icon')->select('value')->first(); @endphp

{{ strtoupper($currency->value) }}{{ $total }}

{{ __('Payout History') }}

@foreach($payouts as $row) @endforeach
{{ __('Transaction ID') }} {{ __('Amount') }} {{ __('Payout Method') }} {{ __('Date Processed') }} {{ __('Payout Status') }}
#{{ $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) {{ __('Processing') }} @endif
{{ $payouts->links() }}
@endsection @if($total > 0) @section('extra') @endsection @endif @section('script') @endsection