Notification::make()
->title('Product published')
->body('Product published successfully')
->actions([
Action::make('Mark As Read')
->button()
->markAsRead()
])
->visible(function (Notification $record) {
return $record->read_at !== null;
})
->sendToDatabase($recipient);