Forms\Components\Actions\Action::make('add')
->hiddenLabel()
->color('success')
->tooltip('Add Invoice')
->icon('heroicon-o-plus-circle')
->modalHeading('Choose Invoice')
->modalSubmitAction(false)
->modalContent(view('filament.modal.invoice-table'))
->action(function (Forms\Get $get, Forms\Set $set, Component $livewire) {
// I want to get the selected record from modal and set the repeater here
}),
Forms\Components\Actions\Action::make('add')
->hiddenLabel()
->color('success')
->tooltip('Add Invoice')
->icon('heroicon-o-plus-circle')
->modalHeading('Choose Invoice')
->modalSubmitAction(false)
->modalContent(view('filament.modal.invoice-table'))
->action(function (Forms\Get $get, Forms\Set $set, Component $livewire) {
// I want to get the selected record from modal and set the repeater here
}),