https://github.com/enomotodev/laractive-admin
The administration framework for Laravel applications
https://github.com/enomotodev/laractive-admin
admin-ui laravel php
Last synced: 5 months ago
JSON representation
The administration framework for Laravel applications
- Host: GitHub
- URL: https://github.com/enomotodev/laractive-admin
- Owner: enomotodev
- Created: 2018-05-19T07:43:08.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-07-29T08:16:56.000Z (over 6 years ago)
- Last Synced: 2025-03-27T10:21:17.254Z (12 months ago)
- Topics: admin-ui, laravel, php
- Language: PHP
- Homepage:
- Size: 52.7 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laractive Admin
[](https://packagist.org/packages/enomotodev/laractive-admin)
[](https://travis-ci.org/enomotodev/laractive-admin)
[](https://scrutinizer-ci.com/g/enomotodev/laractive-admin)
[](https://scrutinizer-ci.com/g/enomotodev/laractive-admin)
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:
```bash
composer require enomotodev/laractive-admin
```
Run the installer
```bash
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
```bash
php artisan migrate
```
Seed admin user
```bash
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:
```bash
php artisan vendor:publish --provider="Enomotodev\LaractiveAdmin\ServiceProvider"
```
And edit `config/laractive-admin.php` file
```php
'example-admin',
];
```
Then you can access with http://yourdomain.com/example-admin
## License
Laractive Admin is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)