@extends('front.v2.partials.master') @section('content')
{!! Form::open(array('route' => 'front.v2.add-to-cart-half', 'method' => 'POST' ,'id' => 'add_cart','autocomplete' => "off")) !!}
@php $activatedMeny = isSpecialPrices(storeId(),true); @endphp @if(count($items)>0)
    @foreach ($items as $item)
  • Yummy Time Food
    @if (isset($item->item_discount) && $item->item_discount > 0)
    {{ (int) $item->item_discount . '% OFF' }}
    @endif

    {!! $item->name !!}

    @php $itemPrice = $item->v_offer_price; if(count($activatedMeny) > 0){ $specialPrice = getSpecialPrice(0,$item->v_type_json,1,0,$activatedMeny); if($specialPrice != null){ $itemPrice = $specialPrice; } } $itemPrice=($itemPrice)/2; if(strpos($itemPrice,".")!==false) { $prices = numberFormat($itemPrice); } else { $prices = numberFormat($itemPrice, false, true, 0); } @endphp
    • {!! $prices !!}
  • @endforeach
@endif
{{----}}
{{----}}
{{----}}
  • {{ __('v2/front_site.half_pizza') }}

{{----}}

Meat Me

{!! __('v2/front_site.left_half') !!}
{{----}}

Meat Me

{!! __('v2/front_site.right_half') !!}
{!! Form::close() !!}
@endsection