@if ($prices) @foreach($prices as $category)

{{ $category->name }}

@if (isset($category->custom_price_label))
@t('Starting from') {{ amount($category->custom_price_label) }} @t('/ pp')
@else @if (isset($category->price) && $category->price)
@t('Starting from') {{ amount($category->price) }}
@endif @endif
@endforeach @endif