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.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
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.