Laravel 根据发送方式向不同的通知对象发送通知

Laravel send notification to different notifiables based on send methods

我有一个应用程序可以向管理员发送有关某些用户操作的通知。一些管理员应通过短信通知,而其他管理员则仅通过数据库通知。 做这个的最好方式是什么?使用两个通知还是一个?我没有找到任何方法来通过通知中的通知方法更改通知。

有什么建议吗?

它可以与 If 语句一起使用

class yourNotifName extends Notification
{
    use Queueable;
    private $role;
    private $notif;

    public function __construct(User $user)
    {
        $this->role= $user->role;
    }

    /**
     * Get the notification's delivery channels.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function via($notifiable)
    {
        if($this->role == "admins") {
            $this->notif = ['sms'];
        } else {
           $this->notif = ['database'];
        }
        return $this->notif;
    }
}