dosarkz/lora

There is no license information available for the latest version (1.2.3) of this package.

Lora - package backend system for Laravel

Maintainers

Details

github.com/dosarkz/lora

Source

Issues

Installs: 76

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Language:JavaScript

1.2.3 2020-05-26 18:39 UTC

This package is auto-updated.

Last update: 2024-05-06 23:12:30 UTC


README

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