@extends('admin.layouts.app') @section('panel')
{{ __($product->title) }}
@if ($product->audio_temp_file && @$product->category->file_type == 'audio' && in_array('mp3', $product->category->preview_file_types ?? []))
00:00
00:00
@else
@lang('Product Preview')
@endif
  • @lang('Category') {{ __(@$product->category->name) }}
  • @lang('Subcategory') {{ __(@$product->subCategory->name) }}
  • @if (!$product->is_free)
  • @lang('Price')(@lang('Regular License')) {{ showAmount($product->price) }}
  • @lang('Price')(@lang('Commercial License')) {{ showAmount($product->price_cl) }}
  • @else
  • @lang('Price') @lang('Free')
  • @endif
  • @lang('Status')
    Warning: Undefined variable $product in /var/www/html/core/resources/views/admin/product/details.blade.php on line 65

    Warning: Attempt to read property "statusBadge" on null in /var/www/html/core/resources/views/admin/product/details.blade.php on line 65
  • @lang('Demo') @if (@$product->category->file_type == 'audio') @lang('Download Preview') @else {{ @$product->demo_url }} @endif
  • @foreach ($product->attribute_info as $info)
  • {{ __($info->name) }} @if (is_array($info->value))
    @foreach ($info->value as $val) {{ __($val) }} @if (!$loop->last) , @endif @endforeach
    @else {{ __(@$info->value) }} @endif
  • @endforeach
  • @lang('Tags')
    @forelse ($product->tags ?? [] as $tag) {{ __($tag) }} @empty @lang('No Tags') @endforelse
  • @lang('Published Date')
    @if (!$product->status == Status::PRODUCT_APPROVED) {{ showDateTime($product->created_at) }} @else {{ showDateTime($product->published_at) }} @endif
  • @lang('Last Update')
    @if ($product->last_updated == null) @lang('Not updated yet') @else {{ showDateTime($product->last_updated) }} @endif
{{-- reject modal --}} @endsection @push('script') @endpush @push('style-lib') @endpush @push('script-lib') @endpush @push('script') @endpush @push('style') @endpush