Renamed and reorganized Livewire components, namespaces, and views for improved file structure and clarity. Introduced filaments.show and filaments.edit routes. Updated database migrations and navigation routes accordingly. Upgraded dependencies in composer.

This commit is contained in:
2025-12-13 03:10:31 +01:00
parent 85b97ed3b1
commit 7e79d1d034
35 changed files with 1319 additions and 736 deletions
@@ -3,18 +3,18 @@
{{ __('Orders') }}
<x-slot name="headerleft">
<flux:input type="text" placeholder="Search..." wire:model.live="search" />
<input type="text" placeholder="Search..." wire:model.live="search" class="bg-jet-700 border-jet-500 rounded text-jet-50 placeholder:text-jet-200 focus:border-olivine focus:ring-olivine" />
</x-slot>
<x-slot name="headerright">
<flux:modal.trigger name="createModal">
<flux:button variant="primary" class="bg-nuke-400 hover:bg-nuke-300">Create Order</flux:button>
<flux:button variant="primary" class="bg-olivine hover:bg-olivine-600">Create Order</flux:button>
</flux:modal.trigger>
</x-slot>
</x-header>
<div class="container m-auto my-8 flex flex-col gap-6">
<div class="m-auto my-8 mx-12 bg-jet-800 rounded-lg shadow p-6 text-jet-50">
<div class="flex flex-row gap-4">
<div class="mb-4">
<flux:heading size="lg">Filter</flux:heading>
@@ -46,7 +46,7 @@
</x-table.item>
</tr>
@endforeach
<x-slot name="pagination">
{{ $orders->links() }}
</x-slot>
@@ -54,4 +54,4 @@
</div>
</section>
</section>