Download the PHP package jeremykenedy/laravel-users without Composer
On this page you can find all versions of the php package jeremykenedy/laravel-users. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jeremykenedy/laravel-users
More information about jeremykenedy/laravel-users
Files in jeremykenedy/laravel-users
Package laravel-users
Short Description Laravel Users Management CRUD Package
License MIT
Informations about the package laravel-users
Laravel Users | A Laravel Users CRUD Management Package
A Users Management CRUD Package that includes all necessary routes, views, models, and controllers for a user management dashboard and associated pages for managing Laravels built in user scaffolding. Easily start creating, updating, editing, and deleting users in minutes with minimal setup required; Easily search all users, helpful for large user bases.
Table of contents
- About
- Features
- Requirements
- Integrations
- Installation Instructions
- Configuration
- Routes
- Screenshots
- File Tree
- Opening an Issue
- License
Features
Laravel Users Features |
---|
Full CRUD of Laravel Users |
Works with built in auth scaffolding |
Works with various Roles/ACL Packages |
Uses Language localization File System |
Uses font awesome, cdn can be optionally called in config |
Can use built in pagination and/or datatables.js |
Can search all users by name, id, or email |
Lots of configuration options |
Requirements
Integrations
Laravel users can work out the box with or without the following roles packages:
Installation Instructions
-
From your projects root folder in terminal run:
Laravel 5.6, 5.7, 5.8, 6, 7, and 8+ use:
Laravel 5.5 use:
Laravel 5.4 use:
Laravel 5.3 use:
Laravel 5.2 use:
- Register Package
- Laravel 5.5, 5.6, 5.7, 5.8, 6, 7, 8+
Uses package auto discovery feature, no need to edit the
config/app.php
file.
- Laravel 5.5, 5.6, 5.7, 5.8, 6, 7, 8+
Uses package auto discovery feature, no need to edit the
- Laravel 5.4 and below
Register the package with laravel in
config/app.php
underproviders
with the following:
- Register the dependencies aliases
- Laravel 5.5 and up
Uses package auto discovery feature, no need to edit the
config/app.php
file.
- Laravel 5.5 and up
Uses package auto discovery feature, no need to edit the
- Laravel 5.4 and below
In
config/app.php
section underaliases
with the following:
- Publish the package config and language files by running the following from your projects root folder:
Configuration
Laravel Users can be configured directly in /config/laravelusers.php
once you publish the assets.
Routes
Routes In-depth
Method | URI | Name | Action | Middleware |
---|---|---|---|---|
GET/HEAD | users | users | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@index | web,auth |
POST | users | users.store | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@store | web,auth |
GET/HEAD | users/create | users.create | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@create | web,auth |
GET/HEAD | users/{user} | users.show | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@show | web,auth |
DELETE | users/{user} | user.destroy | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@destroy | web,auth |
PUT/PATCH | users/{user} | users.update | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@update | web,auth |
GET/HEAD | users/{user}/edit | users.edit | jeremykenedy\laravelusers\app\Http\Controllers\UsersManagementController@edit | web,auth |
Required Packages
(included in this package)
Screenshots
File Tree
- Tree command can be installed using brew:
brew install tree
- File tree generated using command
tree -a -I '.git|node_modules|vendor|storage|tests'
Opening an Issue
Before opening an issue there are a couple of considerations:
- You are all awesome!
- Read the instructions and make sure all steps were followed correctly.
- Check that the issue is not specific to your development environment setup.
- Provide duplication steps.
- Attempt to look into the issue, and if you have a solution, make a pull request.
- Show that you have made an attempt to look into the issue.
- Check to see if the issue you are reporting is a duplicate of a previous reported issue.
- Following these instructions show me that you have tried.
- If you have a questions send me an email to [email protected]
- Need some help, I can do my best on Slack: https://opensourcehelpgroup.slack.com
- Please be considerate that this is an open source project that I provide to the community for FREE when opening an issue.
License
Laravel Users | A Laravel Users Management Package is open-sourced software licensed under the MIT license. Enjoy!