@extends('theme.default') @section('title') Payment Method @endsection @section('canonical') @endsection @section('content')

Payout History

Payout activity:

@foreach($activity as $val)
  • PayPal -
    Requested: {{date('d-m-Y', strtotime($val->created_at))}}
  • {{ $val->amount }}USD
    @if($val->pv_status == 1) @php $requested = 1; @endphp Pending @elseif($val->pv_status == 2) Completed @elseif($val->pv_status == 3) Rollback @elseif($val->pv_status == 4) Soft Rollback @endif
@endforeach
{{--@include ('theme.includes.sidebar')--}}
@endsection