Actions\Action::make('Connect ingredients')
->action(function(Product $product){
//(... removed some code for simplicity)
$decider->decide();
$product->fresh();
if ($decider->getMessages()) {
// Here I want to show a modal with a custom form etc.
}
Notification::make()
->title('Sucessfull')
->color('success')
->send();
})
];
Actions\Action::make('Connect ingredients')
->action(function(Product $product){
//(... removed some code for simplicity)
$decider->decide();
$product->fresh();
if ($decider->getMessages()) {
// Here I want to show a modal with a custom form etc.
}
Notification::make()
->title('Sucessfull')
->color('success')
->send();
})
];