@if ($product->featuredImage) {{ trans('app.featured_image') }} @else {{ trans('app.featured_image') }} @endif
@if ($product->brand) @endif @if ($product->model_number) @endif
{{ trans('app.name') }}: {{ $product->name }}
{{ trans('app.brand') }}: {{ $product->brand }}
{{ trans('app.model_number') }}: {{ $product->model_number }}
{{ trans('app.status') }}: {{ $product->active ? trans('app.active') : trans('app.inactive') }}
{{ trans('app.available_from') }}: {{ $product->created_at->toFormattedDateString() }}
{{ trans('app.updated_at') }}: {{ $product->updated_at->toDayDateTimeString() }}
  • {{ trans('app.basic_info') }}
  • {{ trans('app.description') }}
  • {{ trans('app.listings') }}
  • {{ trans('app.seo') }}
{{-- --}} {{-- --}} @if ($product->manufacturer) @endif @if ($product->origin) @endif @if ($product->gtin_type && $product->gtin) @endif @if ($product->mpn) @endif @if ($product->min_price && $product->min_price != 0) @endif @if ($product->max_price && $product->max_price != 0) @endif
{{ trans('app.product_type') }}: {{ $product->downloadable ? trans('app.digital') : trans('app.physical') }}
{{ trans('app.requires_shipping') }}: {{ $product->requires_shipping ? trans('app.yes') : trans('app.no') }}
{{ trans('app.downloadable') }}: {{ $product->downloadable ? trans('app.yes') : trans('app.no') }}
{{ trans('app.has_variant') }}: {{ $product->hasAttributes() ? trans('app.yes') : trans('app.no') }}
{{ trans('app.manufacturer') }}: {{ $product->manufacturer->name }}
{{ trans('app.origin') }}: {{ $product->origin->name }}
{{ $product->gtin_type }}: {{ $product->gtin }}
{{ trans('app.mpn') }}: {{ $product->mpn }}
{{ trans('app.categories') }}: @foreach ($product->categories as $category) {{ $category->name }} @endforeach
{{ trans('app.min_price') }}: {{ get_formated_currency($product->min_price, 2, config('system_settings.currency.id')) }}
{{ trans('app.max_price') }}: {{ get_formated_currency($product->max_price, 2, config('system_settings.currency.id')) }}
@if ($product->description) {!! htmlspecialchars_decode($product->description) !!} @else

{{ trans('app.description_not_available') }}

@endif
@foreach ($product->inventories as $listing) @endforeach
{{ trans('app.vendor') }} {{ trans('app.stock_quantity') }} {{ trans('app.condition') }} {{ trans('app.price') }} {{ trans('app.options') }}
{{ $listing->shop->name ?? '' }} @if ($listing->shop->isVerified()) verified-badge @endif @if ($listing->shop->isDown()) {{ trans('app.maintenance_mode') }} @endif {{ $listing->stock_quantity > 0 ? $listing->stock_quantity : trans('app.out_of_stock') }} {{ $listing->condition }} @if ($listing->hasOffer()) @php $offer_price_help = trans('help.offer_starting_time') . ': ' . $listing->offer_start->diffForHumans() . ' ' . trans('app.and') . ' ' . trans('help.offer_ending_time') . ': ' . $listing->offer_end->diffForHumans(); @endphp {{ get_formated_currency($listing->sale_price, 2, config('system_settings.currency.id')) }}
@endif {{ get_formated_currency($listing->current_sale_price(), 2, config('system_settings.currency.id')) }}
{{ trans('app.view_detail') }}
@if ($product->slug) @endif @if ($product->meta_title) @endif @if ($product->meta_description) @endif @if ($product->meta_keywords) @endif @if ($product->tags) @endif
{{ trans('app.slug') }}: {{ $product->slug }}
{{ trans('app.meta_title') }}: {{ $product->meta_title }}
{{ trans('app.meta_description') }}: {{ $product->meta_description }}
{{ trans('app.meta_keywords') }}: {{ $product->meta_keywords }}
{{ trans('app.tags') }}: @foreach ($product->tags as $tag) {{ $tag->name }} @endforeach