Action::make('scan-item')
->label('Scan Items')
->modalContent(fn(Order $order) => view('livewire.scanning.bar-code-scanner-wrapper', ['order' => $order]))
->action(function (Order $record): void {})
->modalWidth('Screen')
->modalSubmitActionLabel('Link item to inventory')
->modalSubmitAction(Action::make('submit')
->button()
->label('Foo Bar bam')
->color('red')
)
->slideOver()
Action::make('scan-item')
->label('Scan Items')
->modalContent(fn(Order $order) => view('livewire.scanning.bar-code-scanner-wrapper', ['order' => $order]))
->action(function (Order $record): void {})
->modalWidth('Screen')
->modalSubmitActionLabel('Link item to inventory')
->modalSubmitAction(Action::make('submit')
->button()
->label('Foo Bar bam')
->color('red')
)
->slideOver()