New
Check out online adminpanel generator version - no packages required there, no syntax to learn, it generates Laravel project for you: QuickAdminPanel.com
Package Requirements
- Laravel
^5.6
Laravel 5.5 users info!
To use Quickadmin with Laravel Laravel 5.4 use branch 3.0.2
Laravel 5.4 users info!
To use Quickadmin with Laravel Laravel 5.4 use branch 2.1.1
Laravel 5.3 users info!
To use Quickadmin with Laravel Laravel 5.3 use branch 2.0.x
Laravel 5.2 users info!
To use Quickadmin with Laravel Laravel 5.2 use branch 1.x.x
Laravel 5.1.11 users info!
To use Quickadmin with Laravel Laravel 5.1.11 use branch 0.4.x
QuickAdmin installation
Please note: QuickAdmin requires fresh Laravel installation and is not suitable for use on already existing project.
- Install the package via
composer require laraveldaily/quickadmin
. - Add
Laraveldaily\Quickadmin\QuickadminServiceProvider::class,
to your\config\app.php
providers afterApp\Providers\RouteServiceProvider::class,
otherwise you will not be able to add new ones to freshly generated controllers. - Configure your .env file with correct database information
- Run
php artisan quickadmin:install
and fill the required information. - Register middleware
'role' => \Laraveldaily\Quickadmin\Middleware\HasPermissions::class,
in yourApp\Http\Kernel.php
at$routeMiddleware
- Access QuickAdmin panel by visiting
http://yourdomain/admin
.
More information and detailed description
http://laraveldaily.com/packages/quickadmin/
License
The MIT License (MIT). Please see License File for more information.