@extends('layout') @section('content')
← Continue Shopping

Your Cart

@if(count($cart) > 0)
@foreach($cart as $key => $item) @endforeach
Product Quantity Action
{{ $item['name'] }}
@if($item['variation_name'])
{{ $item['variation_name'] }}
@endif
{{ $item['quantity'] }}
@csrf
@else

Your cart is currently empty.

Continue Shopping
@endif @endsection