@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
@foreach ($data['planFeatures'] as $id => $title) @endforeach

{{ $data['pricingPlan']->name }}

{{ _trans('common.Most Popular') }}
{{ _trans('common.Employee Limit') }} {{ $data['pricingPlan']->is_employee_limit ? $data['pricingPlan']->employee_limit : _trans('common.Unlimited') }}
{{ $title }} @if (in_array($id, $data['pricingPlanFeatures'])) @else @endif
@foreach ($data['pricingPlan']->pricingPlanPrices as $pricingPlanPrice) @endforeach

{{ _trans('common.Prices') }}

{{ $pricingPlanPrice->planDurationType->name }} {{ currency_format(number_format($pricingPlanPrice->price, 2)) }} @if ($pricingPlanPrice->status_id == 1) {{ _trans('common.Active') }} @else {{ _trans('common.Inactive') }} @endif
@endsection