You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -144,6 +154,9 @@ Laravel Users can be configured directly in [`/config/laravelusers.php`](https:/
144
154
'enablePagination' => true,
145
155
'paginateListSize' => 25,
146
156
157
+
// Enable Search Users- Uses jQuery Ajax
158
+
'enableSearchUsers' => true,
159
+
147
160
// Users List JS DataTables - not recommended use with pagination
148
161
'enabledDatatablesJs' => false,
149
162
'datatablesJsStartCount' => 25,
@@ -223,53 +236,54 @@ laravel-users/
223
236
├── composer.json
224
237
├── phpunit.xml
225
238
├── readme.md
226
-
├── src
227
-
│ ├── App
228
-
│ │ └── Http
229
-
│ │ └── Controllers
230
-
│ │ └── UsersManagementController.php
231
-
│ ├── LaravelUsersFacade.php
232
-
│ ├── LaravelUsersServiceProvider.php
233
-
│ ├── config
234
-
│ │ └── laravelusers.php
235
-
│ ├── resources
236
-
│ │ ├── lang
237
-
│ │ │ └── en
238
-
│ │ │ ├── app.php
239
-
│ │ │ ├── forms.php
240
-
│ │ │ ├── laravelusers.php
241
-
│ │ │ └── modals.php
242
-
│ │ └── views
243
-
│ │ ├── layouts
244
-
│ │ │ └── app.blade.php
245
-
│ │ ├── modals
246
-
│ │ │ ├── modal-delete.blade.php
247
-
│ │ │ └── modal-save.blade.php
248
-
│ │ ├── partials
249
-
│ │ │ ├── bs-visibility-css.blade.php
250
-
│ │ │ ├── form-status.blade.php
251
-
│ │ │ └── styles.blade.php
252
-
│ │ ├── scripts
253
-
│ │ │ ├── check-changed.blade.php
254
-
│ │ │ ├── datatables.blade.php
255
-
│ │ │ ├── delete-modal-script.blade.php
256
-
│ │ │ ├── save-modal-script.blade.php
257
-
│ │ │ ├── toggleText.blade.php
258
-
│ │ │ └── tooltips.blade.php
259
-
│ │ └── usersmanagement
260
-
│ │ ├── create-user.blade.php
261
-
│ │ ├── edit-user.blade.php
262
-
│ │ ├── show-user.blade.php
263
-
│ │ └── show-users.blade.php
264
-
│ └── routes
265
-
│ └── web.php
266
-
└── tests
267
-
├── Feature
268
-
└── TestCase.php
239
+
└── src
240
+
├── App
241
+
│ └── Http
242
+
│ └── Controllers
243
+
│ └── UsersManagementController.php
244
+
├── LaravelUsersFacade.php
245
+
├── LaravelUsersServiceProvider.php
246
+
├── config
247
+
│ └── laravelusers.php
248
+
├── resources
249
+
│ ├── lang
250
+
│ │ └── en
251
+
│ │ ├── app.php
252
+
│ │ ├── forms.php
253
+
│ │ ├── laravelusers.php
254
+
│ │ └── modals.php
255
+
│ └── views
256
+
│ ├── layouts
257
+
│ │ └── app.blade.php
258
+
│ ├── modals
259
+
│ │ ├── modal-delete.blade.php
260
+
│ │ └── modal-save.blade.php
261
+
│ ├── partials
262
+
│ │ ├── bs-visibility-css.blade.php
263
+
│ │ ├── form-status.blade.php
264
+
│ │ ├── search-users-form.blade.php
265
+
│ │ └── styles.blade.php
266
+
│ ├── scripts
267
+
│ │ ├── check-changed.blade.php
268
+
│ │ ├── datatables.blade.php
269
+
│ │ ├── delete-modal-script.blade.php
270
+
│ │ ├── save-modal-script.blade.php
271
+
│ │ ├── search-users.blade.php
272
+
│ │ ├── toggleText.blade.php
273
+
│ │ └── tooltips.blade.php
274
+
│ └── usersmanagement
275
+
│ ├── create-user.blade.php
276
+
│ ├── edit-user.blade.php
277
+
│ ├── show-user.blade.php
278
+
│ └── show-users.blade.php
279
+
└── routes
280
+
└── web.php
281
+
282
+
269
283
```
270
284
271
285
* Tree command can be installed using brew: `brew install tree`
272
-
* File tree generated using command `tree -a -I '.git|node_modules|vendor|storage|tests`
286
+
* File tree generated using command `tree -a -I '.git|node_modules|vendor|storage|tests'`
273
287
274
288
### License
275
289
Laravel-Users | A Laravel Users Management Package is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT). Enjoy!
0 commit comments