@extends('layouts.user') @section('content')
| Products | Price | Quantity | Total Price | |
|---|---|---|---|---|
|
{{ $item->product->product_name }}
@if($productVariants->isNotEmpty())
@php
$groupedVariants = $productVariants->groupBy('variable_name');
@endphp
@foreach($groupedVariants as $variableName => $group)
@endforeach
@else
-
@endif
|
-
+
|
Your cart is empty. Add products to your cart
@endif