@@ -115,18 +115,18 @@ discard block |
||
115 | 115 | ); |
116 | 116 | |
117 | 117 | return\ DataTables::of($user->get()) |
118 | - ->addColumn('checkbox', function ($model) { |
|
118 | + ->addColumn('checkbox', function($model) { |
|
119 | 119 | return "<input type='checkbox' class='user_checkbox' |
120 | 120 | value=".$model->id.' name=select[] id=check>'; |
121 | 121 | }) |
122 | - ->addColumn('first_name', function ($model) { |
|
122 | + ->addColumn('first_name', function($model) { |
|
123 | 123 | return '<a href='.url('clients/'.$model->id).'>' |
124 | 124 | .ucfirst($model->first_name).' '.ucfirst($model->last_name).'</a>'; |
125 | 125 | }) |
126 | - ->addColumn('email', function ($model) { |
|
126 | + ->addColumn('email', function($model) { |
|
127 | 127 | return $model->email; |
128 | 128 | }) |
129 | - ->addColumn('created_at', function ($model) { |
|
129 | + ->addColumn('created_at', function($model) { |
|
130 | 130 | $ends = $model->created_at; |
131 | 131 | if ($ends) { |
132 | 132 | $date1 = new DateTime($ends); |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | return $end; |
139 | 139 | }) |
140 | 140 | // ->showColumns('email', 'created_at') |
141 | - ->addColumn('active', function ($model) { |
|
141 | + ->addColumn('active', function($model) { |
|
142 | 142 | if ($model->active == 1) { |
143 | 143 | $email = "<span class='glyphicon glyphicon-envelope' |
144 | 144 | style='color:green' title='verified email'></span>"; |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | |
157 | 157 | return $email.' '.$mobile; |
158 | 158 | }) |
159 | - ->addColumn('action', function ($model) { |
|
159 | + ->addColumn('action', function($model) { |
|
160 | 160 | return '<a href='.url('clients/'.$model->id.'/edit') |
161 | 161 | ." class='btn btn-sm btn-primary btn-xs'> |
162 | 162 | <i class='fa fa-edit' style='color:white;'> </i> Edit</a>" |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | <i class='fa fa-eye' style='color:white;'> </i> View</a>"; |
166 | 166 | // return 'hhhh'; |
167 | 167 | }) |
168 | - ->rawColumns(['checkbox', 'first_name', 'email', 'created_at', 'active', 'action']) |
|
168 | + ->rawColumns(['checkbox', 'first_name', 'email', 'created_at', 'active', 'action']) |
|
169 | 169 | ->make(true); |
170 | 170 | |
171 | 171 | // ->searchColumns('email', 'first_name') |