@extends('front.layouts.app') @section('title', 'Cart') @section('description', 'Cart description') @section('content')

Confirm Your Purchase

@if(session('cart')) @foreach(session()->get('cart') as $id => $details)

{{ $details['product_name'] }}

{{-- ${{ $details['price'] }} USD--}} ${{ $details['price'] }} USD
{{-- ---}} {{-- --}} {{-- +--}}
{{-- ${{ $details['price'] }} USD--}} ${{ $details['quantity'] * $details['price'] }} USD
@endforeach @else

Cart is empty

@endif
{{-- Update--}} {{-- Cart--}} @if(session('cart')) Proceed To Checkout @else Shop Now @endif
{{--
    --}} {{--
  • --}} {{--

    543 Flint Street, Atlanta, GA Georgia, 30303 edit

    --}} {{--
  • --}} {{--
  • --}} {{--

    123 456 7890 edit--}} {{--

    --}} {{--
  • --}} {{--
  • --}} {{--

    info@demolink.comedit

    --}} {{--
  • --}} {{--
--}}
@endsection @section('script') @endsection