@if(! $context->options()->count())
{!! Form::open([
'method' => 'POST',
'url' => route('cart.add', current_front()),
]) !!}
{!! Form::hidden('product_id', $context->id) !!}
@endif
{!! $context->display('price') !!}
@if(! $context->options()->count())
{!! Form::close() !!}
@endif
{{ $context->name }}
{{ $context->description }}
@if($context->options()->count())
@include('fragments.establishment.product.option.modal', [
'context' => $context
])
@endif