@if($item['type'] !== 'bundle') @if($item['price'] > 0 and ! $item['installed'] and $item['licensed'] === false)

{{ __('Not Purchased') }}

@endif @if($item['price'] > 0 and ! $item['installed'] and $item['licensed'])

{{ __('Purchased (Not Installed)') }}

@endif @if($item['price'] > 0 and $item['installed'] and $item['licensed'] and $item['version'] != $item['db_version'])

{{ __('Purchased') }}

@endif @if($item['price'] > 0 and $item['installed'] and $item['licensed'] and $item['version'] == $item['db_version'])

{{ __('Purchased (Installed)') }}

@endif @if(! $item['price'] and ! $item['installed'] and $item['licensed'])

{{ __('Free (Not Installed)') }}

@endif @if(! $item['price'] and $item['installed'] and $item['licensed'] and $item['version'] != $item['db_version'])

{{ __('Free') }}

@endif @if(! $item['price'] and $item['installed'] and $item['licensed'] and $item['version'] == $item['db_version'])

{{ __('Free (Installed)') }}

@endif @endif