{{ $product->name }}
@if (is_admin())
ID:{{ $product->id }}
@if ($product->parent_id)
@endif
@endif
@t('Pricing period')
@if (isset($product->extra->pricing_periods))
@foreach ($product->extra->pricing_periods->weekday as $weekday)
@endforeach
@endif
@if ($product->price > 0)
{{ amount($product->price, ['to' => $settings->currency_id]) }}
@endif
@if ($product->actual_price > 0)
@if ($product->price > 0)
/
@endif
{{ amount($product->actual_price, ['to' => $settings->currency_id]) }}
@endif
@if (is_admin())
@if ($product->capacity || $product->duration)
{{ $product->capacity }}
{{ $product->duration }}
@endif
@endif
{{ $product->qty }}
{{ ($product->unavailable ? 'No' : 'Yes') }}