@include('includes.admin.header') @include('includes.admin.sidebar')

User List From users

All Users

@if($users->count() > 0) @foreach($users AS $user) @endforeach @endif
User Count Name Email First Payment On First Payment Expiry Username Phone Address DOB City Country Notification Account Confirmed? Active Votes Created On Actions
{{($page * 200) + $count++}} {{$user['name']}} {{$user['email']}} {{date("d M Y H:i:s", strtotime($user['payment_created_at']))}} {{date("d M Y", strtotime($user['expiry_date']))}} {{$user['username']}} {{$user['phone']}} {{$user['address']}} {{date("d M Y", strtotime($user['dob']))}} {{$user['city']}} {{$user['country']}} @if ($user['notification'] == 1) Yes @else No @endif @if ($user['confirmation_code'] == 1) Yes @else No @endif Loading.... {{date("d M Y H:i:s", strtotime($user['created_at']))}}         
{{ $users->links() }}
Page : 1
@include('includes.admin.footer')