everything semi working before sample implementation
This commit is contained in:
@@ -18,11 +18,7 @@
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.cart-items {
|
||||
background: white;
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
|
||||
.empty-cart {
|
||||
text-align: center;
|
||||
@@ -111,9 +107,6 @@
|
||||
}
|
||||
|
||||
.summary {
|
||||
background: white;
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
@@ -221,7 +214,7 @@
|
||||
@if(count($items) > 0)
|
||||
<div class="cart-container">
|
||||
<!-- Cart Items -->
|
||||
<div class="cart-items">
|
||||
<div class="cart-items card">
|
||||
@foreach($items as $item)
|
||||
<div class="cart-item">
|
||||
@if($item['product']->images->count() > 0)
|
||||
@@ -277,7 +270,7 @@
|
||||
</div>
|
||||
|
||||
<!-- Summary -->
|
||||
<div class="summary">
|
||||
<div class="summary card">
|
||||
<h2>Order Summary</h2>
|
||||
|
||||
<div class="summary-row">
|
||||
|
||||
Reference in New Issue
Block a user