@extends('Common::admin.layout.page') @section('page')
@foreach ($counters as $count)

{{ $count['count'] }}

{{ $count['title'] }}

@lang('More')
@endforeach
{{__('Matches Status')}} ({{ $currentYear }})
{{__('Matches & Playgrounds')}} ({{ $currentYear }})
{{__('Financial Statistics')}} ({{ $currentYear }})
{{__('Latest Wallet Transactions')}}
@if(count($latestTransactions) > 0) @foreach($latestTransactions as $transaction) @endforeach @else @endif
{{__('ID')}} {{__('Sender')}} {{__('Receiver')}} {{__('Player Δ')}} {{__('System Δ')}} {{__('Type')}} {{__('Created At')}}
{{$transaction->id}} {{$transaction->sender_details}} {{$transaction->receiver_details}} @if($transaction->credit_palyer > 0) +{{$transaction->credit_palyer}} @elseif($transaction->debit_player > 0) -{{$transaction->debit_player}} @else 0.00 @endif {{ $transaction->currency }} @php $sysCredit = $transaction->credit_system + $transaction->fees_credit; $sysDebit = $transaction->debit_system + $transaction->fees_debit; @endphp @if($sysCredit > 0) +{{$sysCredit}} @if($transaction->fees_credit > 0) (incl. {{$transaction->fees_credit}} fees) @endif @elseif($sysDebit > 0) -{{$sysDebit}} @if($transaction->fees_debit > 0) (incl. {{$transaction->fees_debit}} fees) @endif @else 0.00 @endif {{ $transaction->currency }} {{$transaction->type}} {{$transaction->created_at->format('Y-m-d H:i')}}
{{__('No Data')}}
@endsection