Rukmi
Want to use minus-circle Heroicon in Filament
->suffixAction(
Action::make('copyCostToPrice')
->icon('heroicon-minus-circle')
->requiresConfirmation()
->action(function (Product $record) {
$record->price = $record->cost;
$record->save();
})
)
Above code gives error because it cannot find
minus-circle
heroicon.3 replies
Can we add suffix/prefix to lara-zeus/quantity?
https://github.com/lara-zeus/quantity - While using this plugin, I want to know if we can add prefix/suffix to the quantity component?
4 replies