Added ProductionQuantity data grid

This commit is contained in:
dhanabalan
2025-04-28 00:41:07 +05:30
parent 09acb4453c
commit be9457c4e2
2 changed files with 39 additions and 0 deletions

View File

@@ -7,3 +7,20 @@
@livewire(\App\Filament\Widgets\ItemOverview::class) @livewire(\App\Filament\Widgets\ItemOverview::class)
</div> </div>
</x-filament-panels::page> </x-filament-panels::page>
{{-- <x-filament-panels::page>
<div x-data x-init="
window.addEventListener('filtersUpdated', () => {
Livewire.emit('filtersUpdated');
});
" class="space-y-4">
{{-- Filters form --}}
{{-- {{ $this->filtersForm($this->form) }} --}}
{{-- Chart Widget --}}
{{-- @livewire(\App\Filament\Widgets\ItemOverview::class)
</div>
</x-filament-panels::page> --}}

View File

@@ -0,0 +1,22 @@
<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:select-plant />
</div>
{{-- 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>