@extends('web.layouts.base') @section('titre') Panier @endsection @section('styles') @endsection @section('content')

Panier

@if (session('success')) @endif
Votre panier contient (03 items)
@php $total = 0 @endphp @if (session('cart')) @foreach(session('cart') as $id => $details) @php $total += $details['price'] * $details['quantity'] @endphp
{{$details['product_name']}}
  • Type : {{ $details['type'] }}
  • {{--
  • Size : M
  • --}}

Prix :

{{ $details['price'] }} $
@endforeach @endif {{--
Noise NoiseFit Endure Smart Watch
  • Color : Black
  • Size : 32.5mm

Item Price:

$94.99
--}} {{--
350 ml Glass Grocery Container
  • Color : White
  • Size : 350 ml

Item Price:

$24.99
--}}
@csrf @method('POST')
{{--
Résumé de la commande
Have a promo code ?
--}}
Sous Total : {{ $total }} $
Discount (VELZON15) : - $ 53.99
Shipping Charge : $ 65.00
Estimated Tax (12.5%) : $ 44.99
Total (USD) : {{ $total }} $
{{----}}
@endsection @section('scripts') {{-- --}} {{-- --}} @endsection