adjusted orders blade

This commit is contained in:
2025-04-23 17:05:59 +02:00
parent 9def3cae3e
commit a92d1f0466
5 changed files with 37 additions and 11 deletions
@@ -3,7 +3,7 @@
{{ __('Orders') }}
<x-slot name="headerleft">
<input type="text" placeholder="Search..." wire:model.live="search" class="bg-zinc-800 rounded focus:border-accent focus:ring-accent" />
<flux:input type="text" placeholder="Search..." wire:model.live="search" />
</x-slot>
<x-slot name="headerright">
@@ -14,7 +14,20 @@
</x-header>
<div class="container m-auto my-8">
<div class="container m-auto my-8 flex flex-col gap-6">
<div class="flex flex-row gap-4">
<div class="mb-4">
<flux:heading size="lg">Filter</flux:heading>
<flux:text>Apply filter for better visability.</flux:text>
</div>
<flux:separator vertical/>
<div class="flex flex-row gap-4">
@foreach($order_statuses as $order_status)
<flux:button size="sm" variant="ghost" wire:key='{{ $order_status->id }}'>{{ $order_status->name }}</flux:button>
@endforeach
</div>
</div>
<flux:separator />
<x-table>
<x-slot name="tableheader">
<x-table.header>Name</x-table.header>