在 Laravel 5.3 中哪里可以找到 via() 方法和 Notifiable 模型?
Where to find via() method and Notifiable model in Laravel 5.3?
我想使用 laravel-notification-channels/ionic-push-notifications package in Laravel 5.3 app. but I can't find via() method and Notifiable model that are mentioned in the package documentation。我在哪里可以找到它们??
我发现我应该先使用 make:notification
artisan 命令在 app/Notifications 目录中创建通知 class。然后,我将在 class.
中找到 via() 方法
Notifiable 模型不是名称为 "Notifiable" 的模型,但任何模型都可以是 Notifiable 模型(我想向其实例发送通知的模型),方法是使它使用应通报的特征:
use Illuminate\Notifications\Notifiable;
use App\Notifications\MyNotificationClass;
class MyModel extends Model
{
use Notifiable;
....
}
我想使用 laravel-notification-channels/ionic-push-notifications package in Laravel 5.3 app. but I can't find via() method and Notifiable model that are mentioned in the package documentation。我在哪里可以找到它们??
我发现我应该先使用 make:notification
artisan 命令在 app/Notifications 目录中创建通知 class。然后,我将在 class.
Notifiable 模型不是名称为 "Notifiable" 的模型,但任何模型都可以是 Notifiable 模型(我想向其实例发送通知的模型),方法是使它使用应通报的特征:
use Illuminate\Notifications\Notifiable;
use App\Notifications\MyNotificationClass;
class MyModel extends Model
{
use Notifiable;
....
}