Manage Users
+
{{ Form::open( array('url' => action('LoginController@getuser'), 'method'=>'post', 'id' => 'searchForm') ) }}
{{-- START ADD MODAL --}}
{{ Form::submit('Search', ['id' => 'searchBtn', 'class' => 'btn btn-primary']) }}
Reset
{{ Form::close() }}
{!! html_entity_decode(session('successMessage')) !!}
@endif
@if(Session::has('dangerMessage') || count($errors))
{!! html_entity_decode(session('dangerMessage')) !!}
{{ $errors->first() }}
@endif
{{-- END ALERT BLOCK --}}
| # | Name | 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
|
| No Records Found. | ||||||||
@else