@if($product->category)
{{ $product->category->name }}
@endif
{{ $product->name }}
{{ Str::limit($product->description, 120) }}
@if($product->features && count($product->features) > 0)
Key Features:
@foreach(array_slice($product->features, 0, 3) as $feature)
- {{ $feature }}
@endforeach
@if(count($product->features) > 3)
- and {{ count($product->features) - 3 }} more...
@endif
@endif
@if($product->pricingTiers->count() > 0)
@php $minPrice = $product->pricingTiers->where('is_quote_based', false)->min('price'); @endphp
@if($minPrice)
Starting at ${{ number_format($minPrice, 2) }}
@else
Contact for Quote
@endif
@endif