Skip to content

Latest commit

 

History

History
76 lines (66 loc) · 3.61 KB

README.md

File metadata and controls

76 lines (66 loc) · 3.61 KB

CRUDBOOSTER - Laravel CRUD Generator

Latest Stable Version Total Downloads Latest Unstable Version License Monthly Downloads Daily Downloads

Laravel CRUD Generator, Make a Web Application Just In Minutes, Even With Less Code and fewer Steps !

CRUDBooster is Laravel Framework that modified to bring a lot of features to develop a web application so simply. One of the main features is Smart CRUD Generator, so CRUDBooster will create a module automatically included Create, Read, Update, Delete standard function. And CRUDBooster is not usual CRUD Generator,you will get a lot of new experience with a new concept. CRUD Booster is dedicated to those who already understand the basic laravel. We do not recommend for those of you who have never used laravel altogether.

System Requirement

  • PHP >= 5.6.x, PHP <= 7
  • Mcrypt PHP Extension
  • OpenSSL PHP Extension
  • Mbstring PHP Extension
  • Tokenizer PHP Extension

Installation For Laravel 5.2.x

1. Install via composer

composer require crocodicstudio/crudbooster

2. Add Dependencies Package to Service Provider (config/app.php)

Barryvdh\DomPDF\ServiceProvider::class,
Collective\Bus\BusServiceProvider::class,
Maatwebsite\Excel\ExcelServiceProvider::class,
Unisharp\Laravelfilemanager\LaravelFilemanagerServiceProvider::class,
Intervention\Image\ImageServiceProvider::class,
crocodicstudio\crudbooster\CRUDBoosterServiceProvider::class,

3. Add Bellow Facades to (config/app.php)

'PDF' => Barryvdh\DomPDF\Facade::class,
'Excel' => Maatwebsite\Excel\Facades\Excel::class,
'Image' => Intervention\Image\Facades\Image::class,

4. Publish Configuration and Databases

php artisan vendor:publish

Then

php artisan vendor:publish --force --provider="crocodicstudio\crudbooster\CRUDBoosterServiceProvider"

5. Migrating and Seeding the Core Database of CRUDBooster

php artisan migrate --seed

6. Testing

Try to login at /admin
default username : [email protected]
default password : 123456

Update Guide

  1. composer update crocodicstudio/crudbooster
  2. Re-pulbish asset and configuration (Step 4)
  3. Migration & Seeding (Step 5) to make sure any update work properly.

DOCUMENTATION

The complete documentation can be found at : http://crudbooster.com/page/documentation

SUPPORT AND CONTRIBUTION

All of issues and new feature request, please create an issue at GitHub, please do not send an email or Private Message to us.

CREDITS

  1. Laravel Export HTML to Excel by Maatwebsite
  2. Laravel DOM PDF by Barryvdh
  3. Admin Theme by AdminLTE Almsaeed Studio
  4. Laravel Framework by Taylor Otwell