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
+6 -11
View File
@@ -50,10 +50,8 @@
}
.table-container {
background: white;
border-radius: 8px;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
table {
@@ -114,10 +112,7 @@
}
.empty-state {
background-color: var(--bg-secondary);
border-radius: 8px;
padding: var(--spacing-xl);
text-align: center;
border-radius: 20px;
}
.empty-state p {
@@ -184,7 +179,7 @@
<h2>Standard Orders</h2>
@if ($standardOrders->count() > 0)
<div class="table-container">
<div class="table-container card">
<table>
<thead>
<tr>
@@ -215,7 +210,7 @@
</table>
</div>
@else
<div class="empty-state">
<div class="empty-state card--pink">
<p>You haven't placed any standard orders yet.</p>
<a href="{{ route('wallpapers') }}">Browse Products</a>
</div>
@@ -230,7 +225,7 @@
</div>
@if ($customOrders->count() > 0)
<div class="table-container">
<div class="table-container card">
<table>
<thead>
<tr>
@@ -267,7 +262,7 @@
</table>
</div>
@else
<div class="empty-state">
<div class="empty-state card--pink">
<p>You haven't created any custom orders yet.</p>
<a href="{{ route('custom-orders.create') }}">Create Custom Order</a>
</div>