@if ($activeSub->count() == 0)
{{__("You didn't purchase any package")}}.
@endif
@if ($activeSub->count() > 0 && !empty($activeSub->first()->next_package_id))
{{__('You already have another package in stock to activate along side the current package.')}}
{{__('You cannot purchase / extend / change to any package, until the next package is activated.')}}
@endif
@if ($activeSub->count() > 0)
{{__('Current Package')}}: {{$activeSub->first()->current_package->title}} ({{__('Expire Date')}}: {{\Carbon\Carbon::parse($activeSub->first()->expire_date)->toFormattedDateString() }})
@endif
@if ($activeSub->count() > 0 && !empty($activeSub->first()->next_package_id))
{{__('Next Package to Activate')}}: {{$activeSub->first()->next_package->title}}
@endif