You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return (newSlackMessage())
->from("New user request on " . config("app.name"))
->content(":bangbang: An user has requested a new feedback on " . config("app.name"))
->attachment(function ($attachment) use ($notifiable) {
$attachment->title("Feedback ID: {$notifiable->uuid}")
->content("**You can moderate this feedback right away**")
->markdown(["title", "text"])
->fields([
"Request from" => "{$notifiable->user->name} (ID: {$notifiable->user->uuid})",
"Request topic" => "{$notifiable->topic->name}",
]);
});
The text was updated successfully, but these errors were encountered:
I would like to use something like this.
The text was updated successfully, but these errors were encountered: