File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020### Fixed
2121### Removed --->
2222
23+ ## 0.7.2 - 2021-10-20
24+ ### Added
25+ - Added owner and label browsing filters
26+ ### Changed
27+ - Use owner rather than assigned to field
28+ ### Fixed
29+ - Issue with address and contact types migrations
30+ - Search leads and deals
31+ - Settings menu active main menu issue
32+ ### Removed
33+
2334## 0.7.1 - 2021-10-08
2435### Added
2536- Name field on address
Original file line number Diff line number Diff line change 1313 |
1414 */
1515
16- 'version ' => '0.7.1 ' ,
16+ 'version ' => '0.7.2 ' ,
1717
1818 ];
Original file line number Diff line number Diff line change 4444 ] )</p >
4545 <p ><span class =" fa fa-dollar" aria-hidden =" true" ></span > {{ money ($deal -> amount , $deal -> currency ) } } </p >
4646 <p ><span class =" fa fa-info" aria-hidden =" true" ></span > {{ $deal -> description } } </p >
47- <p ><span class =" fa fa-user-circle" aria-hidden =" true" ></span > {{ $deal -> assignedToUser -> name } } </p >
47+ <p ><span class =" fa fa-user-circle" aria-hidden =" true" ></span > {{ $deal -> ownerUser -> name ?? null } } </p >
4848 <h6 class =" mt-4 text-uppercase" >{{ ucfirst (__ (' laravel-crm::lang.contact_person' )) } } </h6 >
4949 <hr />
5050 <p ><span class =" fa fa-user" aria-hidden =" true" ></span > {{ $deal -> person -> name ?? null } } </p >
Original file line number Diff line number Diff line change 3939 ] )</p >
4040 <p ><span class =" fa fa-dollar" aria-hidden =" true" ></span > {{ money ($lead -> amount , $lead -> currency ) } } </p >
4141 <p ><span class =" fa fa-info" aria-hidden =" true" ></span > {{ $lead -> description } } </p >
42- <p ><span class =" fa fa-user-circle" aria-hidden =" true" ></span > {{ $lead -> assignedToUser -> name } } </p >
42+ <p ><span class =" fa fa-user-circle" aria-hidden =" true" ></span > {{ $lead -> ownerUser -> name ?? null } } </p >
4343 <h6 class =" mt-4 text-uppercase" > {{ ucfirst (__ (' laravel-crm::lang.person' )) } } </h6 >
4444 <hr />
4545 <p ><span class =" fa fa-user" aria-hidden =" true" ></span > {{ $lead -> person -> name ?? null } } </p >
You can’t perform that action at this time.
0 commit comments