@extends('Layout.admindashboard') @section('css') @endsection @section('content')

User List

@if (count($userlist) > 0) @foreach ($userlist as $item) @endforeach @else @endif
Sr.No Userid Name Mobile Email Wallet Last Recharge S. Promocode Promocode Created Status Action
{{ $loop->iteration }} {{ appvalidate($item->id) }} {{ appvalidate($item->name) }} {{ appvalidate($item->mobile) }} {{ appvalidate($item->email) }} ₹{{ wallet($item->id) }} ₹{{ number_format(lastrecharge($item->id, 'amount'), 2) }} {{ lastrecharge($item->id, 'created_at') ? dformat(lastrecharge($item->id, 'created_at'), 'd-m-Y') : 'No data found!' }} {{ appvalidate($item->promocode) }} {{ appvalidate($item->id) }} {{ dformat($item->created_at, 'd-m-Y') }}
No User found!!
@endsection @section('js') @endsection