@extends('layouts.webLayoutMaster') @section('meta') @endsection @section('canonical') @endsection @section('title') - Cart @endsection @section('css') @endsection @section('content') {{--

Cart

--}} {{--
@if(empty($products) || count($products)==0) @else @foreach ($products as $cartItem ) @endforeach @endif
image product name price quantity total
No cart data found.
@if($cartItem->product->image->name) {{ $cartItem->product->name }} @else image-description @endif
€{{ number_format($cartItem->product->price,2) }}
@csrf
@csrf €{{ number_format($cartItem->product->price * $cartItem->quantity, 2) }}

Order Details

  • sub total: €{{ number_format($sub_total,2) }}
  • Discount Amount: €{{ number_format($net_discount,2) }}
  • Net Total: €{{ number_format($net_total,2) }}
{{-- Checkout with multiple address --}} {{-- @if(empty($products) || count($products)==0) @else proceed to checkout @endif
--}} {{-- ========================= CART PAGE HEADER ========================= --}}

Your Cart ({{ !empty($products) ? count($products) : 0 }})

{{-- ========================= CART CONTENT ========================= --}}
{{-- ========================= CART PRODUCTS ========================= --}}
@if(empty($products) || count($products) == 0) @else @foreach ($products as $cartItem) {{-- PRODUCT IMAGE --}} {{-- PRODUCT NAME --}} {{-- PRICE --}} {{-- QUANTITY --}} {{-- TOTAL --}} {{-- REMOVE --}} @endforeach @endif
Image Product Price Qty Total
No cart data found.
@if($cartItem->product->image->name) {{ $cartItem->product->name }} @else image-description @endif
{{ $cartItem->product->name }} €{{ number_format($cartItem->product->price, 2) }}
@csrf
€{{ number_format($cartItem->product->price * $cartItem->quantity, 2) }}
@csrf
{{-- ========================= CART SUMMARY ========================= --}}
@endsection @section('js') @endsection