@extends('admin.master', ['menu' => 'dashboard']) @section('title', isset($title) ? $title : '') @section('style') @endsection @section('content')
  • {{ __('Dashboard') }}
@include('admin.dashboard.dashboard_status')

{{ __('Deposit') }}

{{ __('Current Year') }}

{{ __('Withdrawal') }}

{{ __('Current Year') }}

@if (isset($pending_withdrawals[0]))
  • {{ __('Recent Pending Withdrawal') }}
@foreach ($pending_withdrawals as $wdrl)

{{ addressType($wdrl->address_type) }} {{ __('Withdrawal') }}

{{!empty($wdrl->created_at) ? date('d M Y H:i:s', strtotime($wdrl->created_at)) : '' }}

{{ __('Sender') }}

{{ isset($wdrl->senderWallet) ? $wdrl->senderWallet->user->nickname : 'N/A' }}

{{ __('Receiver') }}

{{ isset($wdrl->receiverWallet->user) ? $wdrl->receiverWallet->user->nickname : 'N/A' }}

{{ __('Amount') }}

{{ $wdrl->amount }} {{ $wdrl->coin_type }}

@endforeach
@endif @endsection @section('script') @endsection