@extends('admin.layouts.grid') @section('title', $item->name) @section('item_view', true) @section('back', route('admin.items.index')) @section('content')
@include('admin.items.includes.tabs-nav')
@if (!$item->isDeleted())

{{ $item->name }}
@if (!$item->isPreviewFileTypeAudio())

{{ $item->name }}
@endif @if ($item->isPreviewFileTypeVideo())

@endif @if ($item->isPreviewFileTypeAudio())

00:00
00:00
@endif @if ($item->screenshots)

@endif @endif

{!! $item->description !!}

{{ translate('Category') }}
@if ($item->subCategory)
{{ translate('SubCategory') }}
@endif @if ($item->options && count($item->options) > 0) @foreach ($item->options as $key => $option)
{{ $key }}
@if (is_array($option)) @foreach ($option as $subOption)
{{ $subOption }}
@endforeach @else
{{ $option }}
@endif
@endforeach @endif @if ($item->version)
{{ translate('Version') }}
@endif @if ($item->demo_link)
{{ translate('Demo Link') }}
@endif
{{ translate('Tags') }}
@foreach ($item->getTags() as $tag)
{{ $tag }}
@endforeach
@if (@$settings->item->support_status)

@if ($item->isSupported())
{{ translate('Supported') }}
@else
{{ translate('Not Supported') }}
@endif
@if ($item->isSupported())
{{ translate('Support instructions') }}
{!! purifier($item->support_instructions) !!}
@endif
@endif

{{ translate('Regular License Price') }}
@include('admin.partials.input-price', [ 'input_classes' => 'form-control-md bg-white', 'disabled' => true, 'value' => $item->getRegularPrice(), ])
{{ translate('Extended License Price') }}
@include('admin.partials.input-price', [ 'input_classes' => 'form-control-md bg-white', 'disabled' => true, 'value' => $item->getExtendedPrice(), ])

@if ($item->isFree())
{{ translate('Yes') }}
@else
{{ translate('No') }}
@endif
@if ($item->isFree())
@if ($item->isPurchasingEnabled())
{{ translate('Purchasing Enabled') }}
@else
{{ translate('Purchasing Disabled') }}
@endif
@endif
@include('admin.items.includes.sidebar')
@push('styles_libs') @endpush @push('scripts_libs') @endpush @endsection