everything semi working before sample implementation

This commit is contained in:
twotalesanimation
2025-12-30 00:09:14 +02:00
parent 00b8ff77b2
commit 3c24c0e9ef
39 changed files with 1072 additions and 1615 deletions
+2 -7
View File
@@ -12,9 +12,6 @@
}
.empty-state {
background: white;
padding: 3rem;
border-radius: 8px;
text-align: center;
}
@@ -31,9 +28,7 @@
}
.order-card {
background: white;
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid var(--primary-color);
}
@@ -164,7 +159,7 @@
@if($orders->count() > 0)
<div class="orders-list">
@foreach($orders as $order)
<div class="order-card">
<div class="order-card card">
<!-- Order Header -->
<div class="order-header">
<div class="order-info">
@@ -210,7 +205,7 @@
@endforeach
</div>
@else
<div class="empty-state">
<div class="empty-state card--pink">
<p>No orders found. Start shopping today!</p>
<a href="{{ route('wallpapers') }}" class="btn">Browse Products</a>
</div>