@extends('front.layouts.master') @section('title', isset($title) ? $title : 'Home') @section('description', isset($description) ? $description : '') @section('keywords', isset($keywords) ? $keywords : '') @section('content')
@php $total = 0; @endphp @foreach ($content as $item)
@endforeach
{{ __('Image') }} {{ __('Price') }} {{ __('Quantity') }} {{ __('Total') }} {{ __('Remove') }}
cart
@if ($item->options->item_tag) {{ $item->options->item_tag }} @endif @if ($item->options->discount_parcent > 0) {{ __('-') }}{{ $item->options->discount_parcent }} % @endif

{{ productLangConverter($item->id) }}

{{-- @if ($item->options->color)
@endif @if ($item->options->size)
  • {{ $item->options->size }}
@endif --}}
options->discount_parcent > 0) class="regular-price" @else class="price" @endif > {{ currencyConverter($item->weight) }} @if ($item->options->discount_parcent > 0) {{ currencyConverter($item->price) }} @endif
-
+

{{ currencyConverter($item->subtotal) }}

{{--

{{ __('Discount Codes') }}

@csrf
--}}

{{ __('Subtotal:') }}

{{ currencyConverter(subtotal()) }}

{{-- @if (session()->has('CouponAmount'))
{{ __('Coupon Discount') }}

{{ currencyConverter(Session::get('CouponAmount')) }}

@endif --}} {{--

{{ __('Total') }}

@php $all_total = subtotal() - Session::get('CouponAmount'); @endphp

{{ currencyConverter($all_total) }}

--}}
@push('post_script') @endpush @endsection