@if ($multiple) @foreach($group->pricing_group_prices()->orderBy('price', 'ASC')->get() as $price)

{{ $price->name }}

@if ($price->text)

{{ $price->text }}

@endif

{{ $page->currency_symbol }}{{ $price->price }} @if ($price->vat)Exc VAT @endif

@if ($open == $price->id)
{!! Str::markdown($price->description) !!}
@endif
@endforeach @else @foreach($group->pricing_group_prices()->orderBy('price', 'ASC')->get() as $price)

{{ $price->name }}

@if ($price->text)

{{ $price->text }}

@endif

{{ $page->currency_symbol }}{{ $price->price }} @if ($price->vat)Exc VAT @endif

@endforeach @endif