Level 51
If you cannot explain the problem simply, you don't understand it well enough. Perhaps explain clearly the problem you are trying to fix. Nobody reads that six word title and instantly understands the context around your problem.
Summer Sale! All accounts are 50% off this week.
Tables\Actions\ActionGroup::make([
Tables\Actions\Action::make('View Information')
->color('warning')
->icon('heroicon-o-information-circle')
->modalFooterActions([
Tables\Actions\Action::make('accept')
->icon('heroicon-o-check-circle')
->label('Accept')
->color('success')
->action(function ($record) {
Notification::make()
->title('Accepted successfully')
->success()
->send();
})->close(),
])
Please or to participate in this conversation.