viropanel/admin-laravel

Laravel admin panel

Installs: 47

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:JavaScript

dev-master 2023-09-30 18:53 UTC

This package is auto-updated.

Last update: 2024-04-30 00:45:41 UTC


README

admin-laravel is administrative interface builder for laravel which can help you build CRUD backends just with few lines of code.

Requirements

  • PHP >= 7.0.0
  • Laravel >= 8.0.0
  • MySql

Installation in empty project

This package requires PHP 7+ and Laravel 8.0.0.

First, install laravel 8.0, and make sure that the database connection settings are correct.

composer require viropanel/admin-laravel

After install configure file .env for db connection.

For automatic installation and configure use this command:

php artisan admin-panel:empty-project

Open http://localhost/admin/ in browser,use username admin@admin.loc and password 12345678 to login.

Multilanguage

If you need localization set 'localization' => true from config/admin.php. Default languege is only en optional you can use ro and ru, or use optional only one ru or ro

For categories

'category' => [
    'localization' => true
    'lang' => ['ru', 'ro']
],

For menu admin

'menu_admin' => [
    'localization' => true,
    'lang' => ['ru', 'ro']
]