The administration framework for Laravel applications.
enomotodev/laractive-admin is a Laravel package for the administration framework for laravel applications..
It currently has 8 GitHub stars and 3.346 downloads on Packagist (latest version v0.1.17).
Install it with composer require enomotodev/laractive-admin.
Discover more Laravel packages by enomotodev
or browse all Laravel packages to compare alternatives.
Last updated
Laractive Admin is a Laravel framework for creating elegant backends for website administration.
Require this package with composer using the following command:
composer require enomotodev/laractive-admin
Run the installer
php artisan laractive-admin:install
The installer creates an initializer used for configuring defaults used by Laractive Admin as well as a new folder at app/Admin to put all your admin configurations.
Migrate your database
php artisan migrate
Seed admin user
php artisan laractive-admin:seed
Visit http://yourdomain.com/admin and log in using:
If you want to customize route prefix, Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="Enomotodev\LaractiveAdmin\ServiceProvider"
And edit config/laractive-admin.php file
<?php
return [
'route_prefix' => 'example-admin',
];
Then you can access with http://yourdomain.com/example-admin
Laractive Admin is open-sourced software licensed under the MIT license