|
6 | 6 | [](https://app.codacy.com/gh/venturedrake/laravel-crm?utm_source=github.com&utm_medium=referral&utm_content=venturedrake/laravel-crm&utm_campaign=Badge_Grade_Settings) |
7 | 7 | [](https://packagist.org/packages/venturedrake/laravel-crm) |
8 | 8 |
|
9 | | -This package will add CRM functionality to your laravel projects. |
| 9 | +This package will add CRM functionality to your laravel projects |
10 | 10 |
|
11 | | -> ⚠️ Warning: This is a pre-release version that is not yet ready for production use. |
| 11 | +> ⚠️ Warning: This is a pre-release version that is not recommended for production use. |
12 | 12 |
|
13 | 13 | ## Use Cases |
14 | 14 |
|
@@ -43,15 +43,15 @@ https://spatie.be/docs/laravel-permission/v4/installation-laravel |
43 | 43 | #### Step 4. Require the current package using composer: |
44 | 44 |
|
45 | 45 | ```bash |
46 | | -composer require venturedrake/laravel-crm:^0.3 |
| 46 | +composer require venturedrake/laravel-crm:^0.4 |
47 | 47 | ``` |
48 | 48 |
|
49 | 49 | #### Step 5. Publish the migrations, config & assets |
50 | 50 |
|
51 | 51 | ```bash |
52 | 52 | php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations" |
53 | 53 | php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="config" |
54 | | -php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" |
| 54 | +php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force |
55 | 55 | ``` |
56 | 56 |
|
57 | 57 | #### Step 6. Update the various config settings in the published config file: |
@@ -125,7 +125,24 @@ Note if you modified the route_prefix setting from the default the above url wil |
125 | 125 |
|
126 | 126 | ## Upgrade |
127 | 127 |
|
128 | | -### Upgrading from 0.2 to 0.3 |
| 128 | +### Upgrading from 0.3 to 0.4 |
| 129 | + |
| 130 | +#### Step 1. Run the following to the update migrations and publish assets: |
| 131 | + |
| 132 | +```bash |
| 133 | +composer require venturedrake/laravel-crm::^0.4 |
| 134 | +php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations" |
| 135 | +php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force |
| 136 | +php artisan migrate |
| 137 | +``` |
| 138 | + |
| 139 | +#### Step 2. Run the database seeder |
| 140 | + |
| 141 | +```bash |
| 142 | +php artisan db:seed --class="VentureDrake\LaravelCrm\Database\Seeders\LaravelCrmTablesSeeder" |
| 143 | +``` |
| 144 | + |
| 145 | +### Upgrading from 0.1 to 0.3 |
129 | 146 |
|
130 | 147 | #### Step 1. Run the following to the update migrations and publish assets: |
131 | 148 |
|
|
0 commit comments