Notifiable.php
TLDR
The Notifiable.php
file contains the Notifiable
trait, which is used for adding notification functionality to a class.
Classes
Notifiable
The Notifiable
trait is used for adding notification functionality to a class. It provides methods to manage and send notifications. The trait includes the HasDatabaseNotifications
and RoutesNotifications
traits.
<?php
namespace Illuminate\Notifications;
trait Notifiable
{
use HasDatabaseNotifications, RoutesNotifications;
}