@extends('admin.layouts.grid') @section('title', translate('Update Review: :item_name', ['item_name' => $itemUpdate->item->name])) @section('back', route('admin.items.updated.index')) @section('content')
@include('admin.items.updated.includes.tabs-nav')
@if ($itemUpdate->thumbnail)

{{ $itemUpdate->name }}
@endif @if (!$itemUpdate->isPreviewFileTypeAudio() && $itemUpdate->preview_image)

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

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

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

@endif

{!! $itemUpdate->description !!}

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

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

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

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