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
@@ -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>
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($standardOrders->count() > 0): ?>
<div class="table-container">
<div class="table-container card">
<table>
<thead>
<tr>
@@ -216,7 +211,7 @@
</table>
</div>
<?php else: ?>
<div class="empty-state">
<div class="empty-state card--pink">
<p>You haven't placed any standard orders yet.</p>
<a href="<?php echo e(route('wallpapers')); ?>">Browse Products</a>
</div>
@@ -231,7 +226,7 @@
</div>
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($customOrders->count() > 0): ?>
<div class="table-container">
<div class="table-container card">
<table>
<thead>
<tr>
@@ -270,7 +265,7 @@
</table>
</div>
<?php else: ?>
<div class="empty-state">
<div class="empty-state card--pink">
<p>You haven't created any custom orders yet.</p>
<a href="<?php echo e(route('custom-orders.create')); ?>">Create Custom Order</a>
</div>