Skip to content

tahirghori/dick

 
 

Repository files navigation

Dick - The Admin Panel Builder for Laravel

Project Status GitHub license GitHub issues

Dick helps you kickstart your Laravel project, providing baseline code and interface for what any/many projects will need:

  • CRUD interface (client-friendly GUI for managing entities using Eloquent, inspired by Grocery Crud for CodeIgniter);
  • Authentication, user, role and permission management (using Laravel Auth & Entrust);
  • Superadmin tools:
    • file & database backup;
    • log file viewer;
    • file manager;
    • settings manager;
  • Page Manager (create admin panels for all your pages, even if they need different types of fields or a different number of fields);

Example generated CRUD interface

Website: http://usedick.com

Documentation: http://usedick.com/docs

It's heavily opinionated and uses:

  • Laravel 5
  • Bootstrap 3
  • jQuery
  • AdminLTE theme

Installation

  1. Composer install

    composer install

  2. Like any Laravel 5 installation, run:

    chmod -R o+w storage chmod -R o+w vendor

  3. Run the migrations and seeds:

    php artisan vendor:publish --provider="Dick\Settings\SettingsServiceProvider"

    php artisan migrate

    php artisan db:seed


How to create a new CRUD Panel for an entity

  1. Generate a new resource controller in the command line:

php artisan make:controller ArticleController

  1. Modify the new controller to extend CrudController and delete or comment any methods you don't need.

  2. Create a model for your entity.

php artisan make:model Models/Article

  1. Create a route for it in routes.php:

Route::resource('article', 'ArticleController');

See detailed installation&use of the CRUD panel here: http://usedick.com/docs


Extra packages

Dick's extra functionality is separated into composer packages, that you may choose not to install:

Soon:

  • Dick\MenuManager - add, edit, delete interface for your front-side menu;
  • Dick\MultiLanguage - multi-language Eloquent models & multi-language routes system;

More details on http://usedick.com

About

Build an admin panel fast - Laravel 5, Bootstrap, interface for CRUD, Backup, Auth, Media Manager

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 66.5%
  • HTML 27.3%
  • PHP 6.2%