@extends('front.app') @section('meta') @stop @section('container')
@include('front.templates.background-header')
@if($example_page_content && $example_page_content->children->isNotEmpty())
@foreach($example_page_content->children as $one_item)
{{ $one_item->alias ?? '' }}

{{ $one_item->name ?? '' }}

{{ $one_item->short_descr ?? '' }}

@endforeach
@endif @if($pay_types && $pay_types->goodsItems->isNotEmpty())
Candy left

{{ ShowLabelById(19) }}

    @foreach($pay_types->goodsItems as $one_pay_type)
  • {{ $one_pay_type->itemByLang->name ?? '' }} {!! $one_pay_type->itemByLang->body ?? '' !!}
    • Start 1

      {{ $one_pay_type->itemByLang->page_title ?? '' }}

    • Star 2

      {{ $one_pay_type->itemByLang->h1_title ?? '' }}

    @if($one_pay_type->price_old > 0) {{ getDefaultPriceFormat($one_pay_type->price) }} {{ ShowLabelById(21) }} {{ getDefaultPriceFormat($one_pay_type->price_old) }} {{ ShowLabelById(21) }} @else {{ getDefaultPriceFormat($one_pay_type->price) }} {{ ShowLabelById(21) }} @endif {{ $one_pay_type->itemByLang->meta_title ?? '' }}
  • @endforeach
@endif @include('front.templates.background-bottom')
@stop