enomotodev / laractive-admin
The administration framework for Laravel applications.
Installs: 3 332
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 2
Forks: 1
Open Issues: 1
Requires
- php: >=7.0.0
- doctrine/dbal: ~2.3
- intervention/httpauth: ~2.0.3
- laravel/framework: ~5.5
- laravelcollective/html: ~5.5
Requires (Dev)
- laravel/browser-kit-testing: ^2.0
- laravel/laravel: ~5.5
- phpunit/phpunit: ~6.0
README
Laractive Admin is a Laravel framework for creating elegant backends for website administration.
Requirements
- Laravel: >= 5.5
Install
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:
- User: admin@example.com
- Password: password
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
License
Laractive Admin is open-sourced software licensed under the MIT license