@extends('panel.layout.app') @section('title', __('My Affiliates')) @section('content')

{{__('Withdrawal Requests')}}

@foreach($list as $entry) @endforeach @if(count($list) == 0) @endif
# {{__('Amount')}} {{__('Bank Information')}} {{__('Status')}} {{__('Date')}} {{__('Action')}}
AFF-WTHDRWL-{{$entry->id}} {{$entry->amount}} {{$entry->status}}

{{date("j.n.Y", strtotime($entry->created_at))}}

{{date("H:i:s", strtotime($entry->created_at))}}

{{__('Set as Sent')}}
{{__('There is no withdrawal request')}}

{{__('Succesfull Withdrawal Requests')}}

@foreach($list2 as $entry) @endforeach @if(count($list2) == 0) @endif
# {{__('Amount')}} {{__('Bank Information')}} {{__('Status')}} {{__('Date')}} {{__('Action')}}
AFF-WTHDRWL-{{$entry->id}} {{$entry->amount}} {{$entry->status}}

{{date("j.n.Y", strtotime($entry->created_at))}}

{{date("H:i:s", strtotime($entry->created_at))}}

Set as Sent
{{__('There is no succesfull withdrawal request')}}
@endsection @section('script') @endsection