jpcid / laravel-users

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Laravel-Users | A Laravel Users Management Package

Total Downloads Latest Stable Version License

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, and 5.4+.

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
    
  2. Register the package with laravel in config/app.php under providers with the following:

       Collective\Html\HtmlServiceProvider::class,
       jeremykenedy\laravelusers\LaravelUsersServiceProvider::class,
    
  3. Register the dependencies aliases with laravel in config/app.php section under aliases with the following:

        'Form' => Collective\Html\FormFacade::class,
        'Html' => Collective\Html\HtmlFacade::class,
    
  4. 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

License:MIT License


Languages

Language:HTML 75.7%Language:PHP 24.3%