@extends('layouts.public') @section('content')
@if($product->primaryMedia){{ $product->primaryMedia->alt_text }}@else
Image coming soon
@endif

Product information

{{ $product->name }}

@if($product->short_description)

{{ $product->short_description }}

@endif @if($publicPricesEnabled && $product->price)

${{ number_format((float)$product->price, 2) }} @if($product->price_unit)/ {{ $product->price_unit }}@endif

@else

Pricing is not displayed publicly. Contact or visit the store for current pricing.

@endif @if($product->description)
{!! nl2br(e($product->description)) !!}
@endif
Availability
{{ str($product->availability_status)->headline() }}
@if($product->producer)
Producer/source
{{ $product->producer }}
@endif @if($product->last_verified_at)
Last verified
{{ $product->last_verified_at->toFormattedDateString() }}
@endif @if($product->categories->isNotEmpty())
Categories
{{ $product->categories->pluck('name')->join(', ') }}
@endif
@if($relatedStrains->isNotEmpty())

Related strains

@foreach($relatedStrains as $strain){{ $strain->name }}@endforeach
@endif @if($relatedSpecials->isNotEmpty())

Current promotions

@foreach($relatedSpecials as $special)
{{ $special->title }}@if($special->description)

{{ $special->description }}

@endif
@endforeach
View promotion terms
@endif
{{ config('hms.public_product_notice') }}
@endsection