laravel 通知を介して Slack メッセージを送信しようとしています。
signed up
、 、などのイベントがleave
異なるチャネルを使用して発生した場合。
しかし、ここで問題があります。Laravel がサポートするフック URI は 1 つだけか、さまざまなチャネルのフック URI を設定する方法がわからないからです。
さまざまな種類の Slack メッセージをさまざまなチャネルに送信するにはどうすればよいですか?
前もって感謝します。
以下は私のサインアップ通知コードです:
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\SlackMessage;
/**
* Class SignedUp
* @package App\Notifications
*/
class SignedUp extends Notification
{
use Queueable;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return [
'slack',
];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return SlackMessage
*/
public function toSlack($notifiable)
{
return (new SlackMessage)
->success()
->content("Welcome");
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
}
そして、ここに私のユーザーモデルコードがあります:
<?php
namespace Illuminate\Foundation\Auth;
use Illuminate\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Foundation\Auth\Access\Authorizable;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
use Illuminate\Notifications\Notifiable;
class User extends Model implements
AuthenticatableContract,
AuthorizableContract,
CanResetPasswordContract
{
use Authenticatable, Authorizable, CanResetPassword, Notifiable;
/**
* Route notifications for the Nexmo channel.
*
* @return string
*/
public function routeNotificationForSlack() : string
{
return 'slack webhook uri';
}
}