Skip to content

swimlappy/laravel-users

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel-Users | A Laravel Users Management Package

Total Downloads Latest Stable Version Scrutinizer Code Quality License: MIT

Introduction

A Users Management 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. Built for Laravel 5.2, 5.3, 5.4, and 5.5+.

Requirements

Installation

  1. From your projects root folder in terminal run:

    Laravel 5.2 use:

        composer require jeremykenedy/laravel-users:1.2.0
    

    Laravel 5.3 use:

        composer require jeremykenedy/laravel-users:1.3.0
    

    Laravel 5.4 use:

        composer require jeremykenedy/laravel-users:1.4.0
    

    Laravel 5.5+ use:

        composer require jeremykenedy/laravel-users
    
  2. Register Package

  • Laravel 5.5 and up Uses package auto discovery feature, no need to edit the config/app.php file.

  • Laravel 5.4 and below Register the package with laravel in config/app.php under providers with the following:

       Collective\Html\HtmlServiceProvider::class,
       jeremykenedy\laravelusers\LaravelUsersServiceProvider::class,
    
  1. 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.4 and below In config/app.php section under aliases with the following:

        'Form' => Collective\Html\FormFacade::class,
        'Html' => Collective\Html\HtmlFacade::class,
    
  1. Publish the packages language files by running the following from your projects root folder:

        php artisan vendor:publish --tag=laravelusers
    

Routes

  • /users
  • /users/{id}
  • /users/create
  • /users/{id}/edit

Required Packages

(included in this package)

Screenshots

Show Users Show User Edit User Edit User Password Create User Create User Modal Delete User Modal Error Create Error Update Error Delete

License

Laravel-Users | A Laravel Users Management Package is open-sourced software licensed under the MIT license

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 75.0%
  • PHP 25.0%