@if ($product->image) {{ $product->name }} @endif {{-- If your happiness depends on money, you will never be happy with yourself. --}}
@if ($product->stock === 0) {{ __('product.out_of_stock', ['product' => $product->name]) }} @elseif($product->stock > 0) {{ __('product.in_stock') }} @endif

{{ $product->name }}

{{ $product->price()->formatted->price }}

@if ($product->stock !== 0 && $product->price()->available)
@endif
{!! $product->description !!}
@if ($product->stock !== 0 && $product->price()->available) {{ __('product.add_to_cart') }} @endif