Manage Users

+
{{ Form::open( array('url' => action('LoginController@getuser'), 'method'=>'post', 'id' => 'searchForm') ) }}
{{ Form::submit('Search', ['id' => 'searchBtn', 'class' => 'btn btn-primary']) }} Reset
{{ Form::close() }}
{{-- START ADD MODAL --}} {{-- END ADD MODAL --}}
{{-- START ALERT BLOCK --}} @if(Session::has('successMessage')) @endif @if(Session::has('dangerMessage') || count($errors)) @endif {{-- END ALERT BLOCK --}}
@php $num = 0; @endphp @forelse($users as $user) @empty @endforelse
# Name Email Phone No Membership Number Signup Date Last Login Date Last Data Date Action
{{ ++$num }} {{$user->name }} {{$user->email }} {{$user->phone }} {{$user->unique_membership_id }} {{ date('d M Y H:i:s',strtotime($user->created_at)) }} @if($user->last_login_date != '') {{ date('d M Y H:i:s',strtotime($user->last_login_date)) }} @endif @if($user->last_data_date != '') {{ date('d M Y H:i:s',strtotime($user->last_data_date)) }} @endif @if($user->isActive == 1) {!! html_entity_decode(link_to_route('admin-active-user', '', [$user->id], ['class' => 'btn btn-success btn-xs', 'onclick' => 'return checkInActive()', 'title' => 'Activate'])) !!} @elseif($user->isActive == 0) {!! html_entity_decode(link_to_route('admin-inactive-user', '', [$user->id], ['class' => 'btn btn-danger btn-xs', 'onclick' => 'return checkActive()', 'title' => 'Deactivate'])) !!} @endif {!! html_entity_decode(link_to_route('admin_del_poiowner', '', [$user->id], ['onclick' => 'return checkDelete()', 'title' => 'Delete'])) !!} Update Password Stamped Passport Collector Stamps GPS Coordinates
No Records Found.
{{ $users->render() }}