#LaravelPanel
LaravelPanel is a modern Laravel Admin package.
This package provides an easily configurable admin panel for Laravel 5.1 & 5.0 applications with a CRUD system, UI and more.
- Fully translatable , 9 languages
- Crud, With just few lines of code, you'll have Add, Edit, Delete and Search actions for your models.
- Column types: text, select box, checkbox , text editor , datetime, image , autocomplete , tag ,colorpicker
- **File manager ** power full file manager inside the text editor
- Extension system that allows you to create own custom column types
- Sorting, ordering, filters, pagination
- Imort and Export data Every crud you make it have import and export data from Excel
- Clean Admin, Based on bootstrap 3 and sb-admin-2
- Dashboard, It shows how many records you have in every model added in menu.
- Preconfigured, It has default users and models you need.
- Powerful, It offers a Login section, Admin settings, forgot password and all other features you need for admin panel.
- ** RTL support **
You can check the live demo here . User: admin@change.me Pass: 12345
##Installations Note: if you face any problem in any of the steps you should report it at github
-
First you need to create a laravel project.
-
Add our package to require section of composer
laravel 5.0
"require": { "serverfireteam/panel": "1.2.*" },
laravel 5.1
"require": { "serverfireteam/panel": "1.3.*" },
And run the composer update command, the package and its dependencies will be installed.
-
Add the ServiceProvider of the package to the list of providers in the config/app.php file
laravel 5.0
'providers' => array( 'Serverfireteam\Panel\PanelServiceProvider' )
laravel 5.1
'providers' => array( Serverfireteam\Panel\PanelServiceProvider::class )
-
Run the following command in order to publish configs, views and assets.
php artisan panel:install
-
Go to your domain.com/panel and you can login with the following username and password : user : admin@change.me password : 12345
To get a sample code, please check the Laravel Panel Demo
#Credits SB-admin for admin template. A forked repo of rapyd for CRUD system.
We are going to develop this package every day and new ideas are welcome. Thank you for using our package