forked from crocodic-studio/crudbooster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
58 lines (58 loc) · 2.77 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
| --------------------------------------------------------------------------------------------
| Installation Guide
| --------------------------------------------------------------------------------------------
| Package Name : crudbooster
| Description : CRUDBooster is integrated backend & crud generator for Laravel
| Package Path : crocodicstudio/crudbooster
| Homepage : http://crudbooster.com
|
| --------------------------------------------------------------------------------------------
| 1. Install via Composer
| --------------------------------------------------------------------------------------------
| composer require crocodicstudio/crudbooster
|
| --------------------------------------------------------------------------------------------
| 2. Add Dependeny Packages to Service Provider (config/app.php)
| --------------------------------------------------------------------------------------------
| * Laravel DOMPDF
| Barryvdh\DomPDF\ServiceProvider::class,
| ** Facade :
| 'PDF' => Barryvdh\DomPDF\Facade::class,
|
| * Maatwebsite Excel
| Collective\Bus\BusServiceProvider::class,
| Maatwebsite\Excel\ExcelServiceProvider::class,
| ** Facade :
| 'Excel' => Maatwebsite\Excel\Facades\Excel::class,
|
| * UniSharp Laravel File Manager
| Unisharp\Laravelfilemanager\LaravelFilemanagerServiceProvider::class,
| Intervention\Image\ImageServiceProvider::class,
| ** Facade :
| 'Image' => Intervention\Image\Facades\Image::class,
|
| --------------------------------------------------------------------------------------------
| 3. Add CRUDBooster Package to Service Provider (config/app.php)
| --------------------------------------------------------------------------------------------
| crocodicstudio\crudbooster\CRUDBoosterServiceProvider::class,
|
| --------------------------------------------------------------------------------------------
| 4. Publish All Configuration and Files
| --------------------------------------------------------------------------------------------
| * For first time use or refresh the project :
| php artisan vendor:publish --force
|
| * For publishing CRUDBooster files only :
| php artisan vendor:publish --provider="crocodicstudio\crudbooster\CRUDBoosterServiceProvider" --force
|
| --------------------------------------------------------------------------------------------
| 5. Migration & Seed the CRUDBooster Core Database
| --------------------------------------------------------------------------------------------
| ** For first time use & update :
| php artisan migrate --seed --force
|
| * For refresh the project :
| php artisan migrate:refresh --seed --force
|
| * Everytime you update the CRUDBooster, don't forget to migrating again and seeding again
| --------------------------------------------------------------------------------------------