/panel

An easily configurable admin panel for Laravel 5.1 and Laravel 5.0 applications.

Primary LanguageJavaScript

#LaravelPanel

Total Downloads Latest Stable Version License

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.

Main features

  • Crud, With just few lines of code, you'll have Add, Edit, Delete and Search actions for your models.
  • 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.

Screen shot

  • This is a custom CRUD with few lines of code : dashboard of panel List of Pages Edit Pages

Demo

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

  1. First you need to create a laravel project.

  2. 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.

  1. 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
    )
  2. Run the following command in order to publish configs, views and assets.

    php artisan panel:install
    
  3. Go to your domain.com/public/panel and you can login with the following username and password : user : admin@change.me password : 12345

Documents

laravelpanel.com/docs/master

#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