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

Total Recharge List

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

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

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

@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}} {{$item->opay_net_amount}} {{ 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