@extends('website.layouts.app') @section('content')
@php $cartItems = getCartContent(); @endphp @if (count($cartItems) > 0)

@if (session('app_language', 'en') == 'en') Your Cart @else سلة التسوق الخاصة بك @endif


@foreach ($cartItems as $item)
{{-- {{ $item->options->productImage }} --}} {{-- @if (!empty($item->options->productImage)) --}} @if ($item->options->gift_src == '') @else @endif {{-- @endif --}}

  • @if (session('app_language', 'en') == 'en') {{ $item->name ?? '' }} @else {{ $item->options->title_ar ?? '' }} @endif
  • {{--
  • Select Size: Medium
  • --}} {{--
  • In-store Pickup: New York
  • --}} {{-- {{ $item->options->note ?? 'Not Available' }} --}} {{-- {{ $item->options->file ?? 'Not Available' }} --}} @if ($item->options->delivery_date != '')
  • Delivery Date: {{ $item->options->delivery_date ?? '' }}
  • @endif @if ($item->options->delivery_time != '')
  • Delivery Time: {{ $item->options->delivery_time ?? '' }}
  • @endif @if ($item->options->personal_message != '')
  • Personal Message: {{ $item->options->personal_message ?? '' }}
  • @endif

{{-- --}}
{{ display_price($item->price) }} {{-- --}}
@endforeach
@php $subTotal = floatval(str_replace(',', '', Cart::subtotal())); $netTotal = floatval(str_replace(',', '', Cart::total())); @endphp @if (session('app_language', 'en') == 'en') Cart Totals @else إجماليات سلة التسوق @endif
@if (session('app_language', 'en') == 'en') Subtotal: @else المجموع الفرعي @endif
{{display_price($subTotal)}}
{{--
@if (session('app_language', 'en') == 'en') Subtotal: @else المجموع الفرعي @endif
--}} {{--
--}}
{{--
--}} {{--
--}}
VAT
{{ display_price(0) }}
Total
{{ display_price($netTotal) }}
@endif

 recommended products 

The most beautiful bouquets & gifts for occasions!

@if (count($latestProducts) > 0) {{-- --}} @endif
@foreach ($latestProducts as $product) @endforeach @endsection @section('scriptJs') @endsection