@extends("layouts.admin.app") @section("page-nav-title")

{{__("Wallets Technician")}}

{{__("All Wallets Technician")}}

@endsection @section("content")
@include("admin.wallets.parts.filter")
@if(isset($request)) @else @endif @if(isset($request)) @if(!empty($transactions)) @foreach($transactions as $transaction) @endforeach @endif @else @if(!empty($transactions)) @php $all_total_amount = 0; $total_received= 0; $total_commission= 0; $total_app_received= 0; $total_subTotal = 0; @endphp @foreach($transactions as $index => $transaction) @php $all_total_amount += $transaction['all_total_amount']; $total_received += $transaction['total_received']; $total_commission += $transaction['total_commission']; $total_app_received += $transaction['total_app_received']; $total_subTotal += $transaction['total_subTotal']; @endphp @endforeach @endif @endif
#{{__("ID")}} {{__("Date")}}{{__("Name")}}{{__("Total Price")}} {{__("Captured")}} {{__("commission")}} {{__("App Received")}} {{__("Sub Total")}}
{{$transaction['id']}} {{$transaction['created_at']}} {{$transaction['total_amount']}} {{$transaction['received']}} {{$transaction['commission']}} {{$transaction['app_received']}} {{$transaction['subTotal']}}
Total {{$all_total_amount}} {{$total_received}} {{$total_commission}} {{$total_app_received}} {{$total_subTotal}}
{{$index}} {{$transaction['all_total_amount']}} {{$transaction['total_received']}} {{$transaction['total_commission']}} {{$transaction['total_app_received']}} {{$transaction['total_subTotal']}}
Total {{$all_total_amount}} {{$total_received}} {{$total_commission}} {{$total_app_received}} {{$total_subTotal}}
@endsection @section("scripts") @endsection