@extends('../layout/' . $layout) @section('subhead') Wallet History @endsection @section('subcontent')

Wallet History

@csrf
@if (!$searchString) @else @endif
@if ($totalRecords > 0)
@php $no = 0; @endphp @foreach ($wallet as $request) @endforeach
# Profile NAME ContactNo Amount Date Payment Method Status
{{ ($page - 1) * 15 + ++$no }}
Astrologer image
{{ $request->userName }}
{{ $request->userContact }}
{{ $request->amount }}
{{ date('d-m-Y', strtotime($request->created_at)) ? date('d-m-Y h:i', strtotime($request->created_at)) : '--' }} {{ucwords($request->paymentMode)}}
{{ $request->paymentStatus }}
@if ($totalRecords > 0)
Showing {{ $start }} to {{ $end }} of {{ $totalRecords }} entries
@endif
@else
noData

No Data Available

@endif