File tree Expand file tree Collapse file tree 5 files changed +21
-3
lines changed Expand file tree Collapse file tree 5 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222### Fixed
2323### Removed --->
2424
25+ ## 0.3.0 - 2021-05-11
26+ ### Added
27+ - Dashboard
28+ - team_id to models
29+ ### Removed
30+ - User model class
31+
2532## 0.2.7 - 2021-04-04
2633### Fixed
2734- Conflict with Laravel 8 Jetstream teams route
Original file line number Diff line number Diff line change @@ -125,6 +125,17 @@ Note if you modified the route_prefix setting from the default the above url wil
125125
126126## Upgrade
127127
128+ ### Upgrading from 0.2 to 0.3
129+
130+ #### Step 1. Run the following to the update migrations and publish assets:
131+
132+ ``` bash
133+ composer require venturedrake/laravel-crm::^0.3
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+
128139### Upgrading from 0.1 to 0.2
129140
130141#### Step 1. Run the following to the update package, database and add the default roles/permissions:
Original file line number Diff line number Diff line change 1313 |
1414 */
1515
16- 'version ' => '0.2.7 ' ,
16+ 'version ' => '0.3.0 ' ,
1717
1818 ];
Original file line number Diff line number Diff line change 2020 'currency ' => 'USD ' ,
2121 'user_owner_id ' => 1 ,
2222 'user_assigned_id ' => 1 ,
23- 'created_at ' => Carbon::now ()->subDays ($ faker ->numberBetween (0 ,14 ))
23+ 'created_at ' => Carbon::now ()->subDays ($ faker ->numberBetween (0 , 14 )),
2424 ];
2525});
Original file line number Diff line number Diff line change 1818 'currency ' => 'USD ' ,
1919 'lead_status_id ' => 1 ,
2020 'user_assigned_id ' => 1 ,
21- 'created_at ' => Carbon::now ()->subDays ($ faker ->numberBetween (0 ,14 ))
21+ 'created_at ' => Carbon::now ()->subDays ($ faker ->numberBetween (0 , 14 )),
2222 ];
2323});
You can’t perform that action at this time.
0 commit comments