Laravel 8 使用 Notification Facade
另外,你可以通过 Notification
facade 来发送通知,它主要用在当你需要给多个可接收通知的实体发送的时候,比如给用户集合发送通知。使用 Facade 发送通知的话,要把可接收通知实例和通知实例传递给 send
方法:
Notification::send($users, new InvoicePaid($invoice));
另外,你可以通过 Notification
facade 来发送通知,它主要用在当你需要给多个可接收通知的实体发送的时候,比如给用户集合发送通知。使用 Facade 发送通知的话,要把可接收通知实例和通知实例传递给 send
方法:
Notification::send($users, new InvoicePaid($invoice));