@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| # |
User Details |
Gpay Phone No |
Amount |
Date & Time |
Action |
@if(count($result)>0)
@foreach($result as $key=>$item)
| {{ $key+1 }} |
Name : {{ $item->name }}
@if($item->email) Email : {{ $item->email }} @endif
@if($item->phone_no) Phone No : {{ $item->phone_no }} @endif
@if($item->available_points) Available Coins : {{ $item->available_points }} @endif
|
{{ $item->gpayno }} |
{{ $item->request_amount }}
|
{{ date("d/m/Y h:i A",strtotime($item->created_at))}} |
|
@endforeach
@else
No records found!
|
@endif