@extends('layouts.app')
@section('content')
@include('includes.bread_crumb_with_header', [
'header' => 'Wallets',
'bread_crumbs' => ['Home' => "", 'Sellers' => ''],
])
Wallet Id |
Seller Name |
Last Recharge Date |
Total Credit |
Add Credit |
@foreach ($wallets as $wallet)
{{ $wallet->id }}
|
{{ $wallet->user->name ?? '' }} |
{{ !empty($wallet->user->payment->date) ? $wallet->user->payment->date : '' }} |
{{ $wallet->amount }} |
Top Up |
@endforeach
Seller Name |
Seller Email |
Last Recharge Date |
Ref No |
Amount |
Approve Credit |
@foreach ($bank_payments as $bankPayment)
@if (!empty($bankPayment->walletlog))
@if ($bankPayment->walletlog->status == 1)
{{ $bankPayment->walletlog->wallet->user->name }} |
{{ $bankPayment->walletlog->wallet->user->email }} |
{{ $bankPayment->created_at->format('Y-m-d') }} |
{{ $bankPayment->extra }} ({{$bankPayment->reference}})
copied!
{{--
copy
--}}
|
{{ $bankPayment->amount }} GBP |
Approve
Reject
|
@endif
@endif
@endforeach
Seller |
Wallet Balance |
Requested Amount |
Action |
@foreach ($wallet_withdrawals as $withdrawal)
@if($withdrawal->status != 2 && $withdrawal->status != 1)
{{ $withdrawal->name }} ( {{ $withdrawal->email }} )
|
{{ $withdrawal->total }} |
{{ $withdrawal->amount }} |
@if($withdrawal->status != 1)
Confirm
Reject
@else
Approved
@endif
|
@endif
@endforeach
@endsection
@push('script')
@endpush