@extends('layouts.admin') @section('content')
Total Recharge PaymobUAE Details

Total Recharge List

@if (count($total_amount) > 0)
@if (request()->date) @elseif (request()->start_date && request()->end_date) @endif

Before Paymob Fees: {{round($before_paymob_fees_amount,2)}} AED

After Paymob Fees: {{round($after_paymob_fees_amount,2)}} AED

@endif
@php $count=0 @endphp @foreach ($total_amount as $item) @endforeach
Id Name Amount (Before Paymob Fees) Amount (After Paymob Fees) Date/Time
{{++$count}} {{$item->first_name.' '.$item->middle_name.' '.$item->last_name}} {{$item->amount_aed}} {{$item->paymob_uae_net_amount_aed}} {{ date('Y-m-d', strtotime($item->created_at)) . ' / '}} {{date('h:i A', strtotime($item->created_at))}}
{{ $total_amount->appends(Request::except('page'))->render('inc.paginate') }}

Displaying {{$total_amount->count()}} of {{ $total_amount->total() }} discount(s).

@endsection @section('admin-js') @endsection