@extends('front.front-app') @section('meta-tags') @include('front.meta-tags.for-other-pages') @stop @include('front.header') @section('container')
@if(!empty($basket) && count($basket))
@foreach($basket as $one_item) @php $parent_alias= ''; $parent_alias = $goods_item[$one_item->id] ? $goods_item[$one_item->id]->getSubjectId->alias : ''; @endphp
{{ $one_item->goods_name ?? '' }}

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

@if($one_item->gift_text)

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

@endif
{{ getDefaultPriceFormat($goods_item[$one_item->id]->price) }} {{ ShowLabelById(5, $lang_id) }}
{{ getDefaultPriceFormat($goods_item[$one_item->id]->price * $one_item->items_count) }} {{ ShowLabelById(5, $lang_id) }}
@endforeach
@csrf
{{ ShowLabelById(43, $lang_id) }}
{{ ShowLabelById(33, $lang_id) }}
{{ ShowLabelById(37, $lang_id) }}
{{ ShowLabelById(40, $lang_id) }}

{{ ShowLabelById(41, $lang_id) }} ({{ $basket_items_count ?? '' }})

{{ getDefaultPriceFormat($sub_total_price) }} {{ ShowLabelById(5, $lang_id) }}

{{ ShowLabelById(42, $lang_id) }}

{{ getDefaultPriceFormat($delivery_price) }} {{ ShowLabelById(5, $lang_id) }}

{{ ShowLabelById(25, $lang_id) }}

{{ getDefaultPriceFormat($total_price) }} {{ ShowLabelById(5, $lang_id) }}

{!! ShowLabelById(47, $lang_id) !!}

@else
Empty cart

{{ ShowLabelById(27, $lang_id) }}

{{ ShowLabelById(28, $lang_id) }}

@endif
@stop @include('front.footer')