https://github.com/dosarkz/lora
Lora - package backend module system for Laravel Framework
https://github.com/dosarkz/lora
admin admin-panel laravel laravel-admin laravel-administrator module-system php
Last synced: 15 days ago
JSON representation
Lora - package backend module system for Laravel Framework
- Host: GitHub
- URL: https://github.com/dosarkz/lora
- Owner: dosarkz
- License: mit
- Created: 2017-10-05T11:13:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-06T14:43:39.000Z (over 5 years ago)
- Last Synced: 2025-05-22T02:49:30.066Z (9 months ago)
- Topics: admin, admin-panel, laravel, laravel-admin, laravel-administrator, module-system, php
- Language: JavaScript
- Homepage:
- Size: 19.7 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lora backend module system for Laravel Framework 5.6
Features:
- Module System
- Module Generator with command
- Remove modules
- AdminLte template
- Upload image files with resize
- Language support: English, Russian
## Installation
- Install laravel 5.6
- Configure db
- Install admin package
`composer require dosarkz/Lora`
- Make Lora system
`php artisan lora:install`
- Go through all the necessary steps
- Visit `your_project/lora`
- and Be Happy!
## Make new module with command
`php artisan module:make {module name}`
- New modules created in app/Modules folder.
- After making add new provider to config/admin.php
`providers' => [
'user' => \App\Modules\User\Providers\UserServiceProvider::class,
...
]
`
- Visit new module on admin menu
## Module install
`php artisan module:install {module name}`
This command consist of:
- Make publish files
- Run migrations and seeder