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

User List From users

All Users

{!! Form::open(['method' => 'POST', 'class' => 'well top-margin pull-left col-sm-12']) !!}
{!! Form::text('data[name]', '', ['class' => 'form-control', 'placeholder' => 'Name']) !!}
{!! Form::text('data[email]', '', ['class' => 'form-control', 'placeholder' => 'Email']) !!}
{!! Form::checkbox('data[notification]', 1) !!} Only Users with Notification
{!! Form::checkbox('data[active]', 1) !!} Only Active Users
{!! Form::close() !!}
@if($users->count() > 0) @foreach($users AS $user) @endforeach @endif
# Name Email Username Phone Address DOB City Country Notification Account Confirmed? Active Votes Created On Actions
{{$count++}} {{$user['name']}} {{$user['email']}} {{$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')