Fix for white label purchase

This commit is contained in:
Hillel Coren 2017-11-30 19:34:14 +02:00
parent 8b40687ece
commit 7b4d7949b0

View File

@ -6,7 +6,7 @@
@if (Auth::user()->account->hasFeature(FEATURE_WHITE_LABEL))
{{ trans('texts.white_labeled') }}
@if (false && $company->hasActivePlan() && $company->daysUntilPlanExpires() <= 10)
@if ($company->hasActivePlan() && $company->daysUntilPlanExpires() <= 10)
- <b>{!! trans('texts.license_expiring', [
'count' => $company->daysUntilPlanExpires(),
'link' => '<a href="#" onclick="buyWhiteLabel()">' . trans('texts.click_here') . '</a>',