@extends('layouts.master') Bunty-G - Cart
@if ($cartCollection->count() > 0)

Cart page

@foreach (Cart::getContent() as $product)
@endforeach
Product Price Quantity Subtotal

{{ $product->model->name }}

{{ $product->model->getEuropePrice() }} {{ $product->quantity }} {{ $product->model->getEuropePrice() }}
@csrf @method('DELETE')

Coupon code

@if ($conditionCalculatedValue3 === 0) @if (Auth::check())

If you have a coupon code, please enter it in the box below. It could be interesting for you

{{-- Formulaire de validation du coupon --}}
@csrf
@else

If you want to have acces of coupon you'll need to create an account or login

@endif @else

Coupon already applied

@endif

Instructions for seller

If you have some information for the seller you can leave them in the box below


@else

Your cart is empty

Start your purchases to go to the next step

See our products Back to home
@endif