fixed Color & Type View and Tables

This commit is contained in:
2025-04-22 17:48:38 +02:00
parent 07114a53c6
commit 6160ce6edd
8 changed files with 320 additions and 66 deletions
@@ -7,6 +7,7 @@
<flux:navbar class="-mb-px max-lg:hidden">
<flux:navbar.item wire:navigate icon="home" href="{{ route('dashboard') }}">Dashboard</flux:navbar.item>
<flux:navbar.item wire:navigate icon="shopping-bag" href="{{ route('dashboard') }}">Orders</flux:navbar.item>
<flux:navbar.item wire:navigate icon="archive-box" href="{{ route('manufacturers.index') }}">Manufacturers</flux:navbar.item>
<flux:dropdown>
+4 -4
View File
@@ -1,17 +1,17 @@
<div class="border border-zinc-300 rounded-lg shadow">
<div class="border border-blackout-950 rounded-lg shadow">
<table class="w-full rounded-lg">
<thead class="bg-zinc-200 border-b border-zinc-300 rounded-t-lg">
<thead class="bg-black border-b border-blackout-950 rounded-t-lg">
<tr class="text-left">
{{ $tableheader }}
</tr>
</thead>
<tbody class="bg-zinc-100">
<tbody class="bg-black">
{{ $slot }}
</tbody>
</table>
@isset($pagination)
<div class="px-6 py-4 bg-zinc-100 rounded-b-lg">
<div class="px-6 py-4 bg-black rounded-b-lg">
{{ $pagination }}
</div>
@endisset
@@ -1,3 +1,3 @@
<th {{ $attributes->merge(['class' => 'py-4 px-3 first:pl-6 last:pr-6']) }}>
<th {{ $attributes->merge(['class' => 'py-4 px-3 first:pl-6 last:pr-6 text-nuke-400']) }}>
{{ $slot }}
</th>