Added rework locator invoice validation livewire page and table

This commit is contained in:
dhanabalan
2025-07-01 15:12:12 +05:30
parent b13b5dbb05
commit a0db69a4c8
3 changed files with 196 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<x-filament::page>
<form wire:submit.prevent="create" class="space-y-6">
{{-- Form Section --}}
<div class="filament-form space-y-6">
{{ $this->form }}
</div>
{{-- Livewire Component (Invoice Table) --}}
<div class="bg-white shadow rounded-xl p-4">
<livewire:invoice-rework-data-table />
</div>
{{-- Heading after Livewire component (optional) --}}
{{-- <h2>hello</h2> --}}
{{-- Actions --}}
<div class="filament-actions mt-6">
<x-filament::actions>
@foreach ($this->getFormActions() as $action)
{{ $action }}
@endforeach
</x-filament::actions>
</div>
</form>
</x-filament::page>