{{ __('Package Name') }} |
{{ $package->plan_name }} |
{{ __('Price') }} |
{{ currency($package->plan_price) }} |
{{ __('Expired Date') }} |
@if ($package->expiration == 'lifetime')
{{ __('Lifetime') }}
@else
{{ $package->expiration_date }}
@endif
|
{{ __('Property') }} |
@if ($package->number_of_property == -1)
{{ __('Unlimited') }}
@else
{{ $package->number_of_property }}
@endif
|
{{ __('Amenity') }} |
{{ __('Unlimited') }}
|
{{ __('Nearest Place') }} |
{{ __('Unlimited') }}
|
{{ __('Photo') }} |
{{ __('Unlimited') }}
|
{{ __('Featured Property') }} |
@if ($package->is_featured == 1)
{{ __('Available') }}
@else
{{ __('Not Available') }}
@endif
|
{{ __('Featured Property') }} |
@if ($package->number_of_feature_property == -1)
{{ __('Unlimited') }}
@else
{{ $package->number_of_feature_property }}
@endif
|
{{ __('Top Property') }} |
@if ($package->is_top == 1)
{{ __('Available') }}
@else
{{ __('Not Available') }}
@endif
|
{{ __('Top Property') }} |
@if ($package->number_of_top_property == -1)
{{ __('Unlimited') }}
@else
{{ $package->number_of_top_property }}
@endif
|
{{ __('Urgent Property') }} |
@if ($package->is_urgent == 1)
{{ __('Available') }}
@else
{{ __('Not Available') }}
@endif
|
{{ __('Urgent Property') }} |
@if ($package->number_of_urgent_property == -1)
{{ __('Unlimited') }}
@else
{{ $package->number_of_urgent_property }}
@endif
|