Skip to content

Commit b012e66

Browse files
authored
Update README.md
1 parent d42522e commit b012e66

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,14 @@ To make use of this package, your notification class should look like this:
4949
namespace App\Notifications;
5050

5151
use Illuminate\Notifications\Notification;
52+
use NotificationChannels\SendGrid\SendGridChannel;
5253

5354
class ExampleNotification extends Notification
5455
{
5556
public function via($notifiable)
5657
{
5758
return [
58-
\NotificationChannels\SendGrid\SendGridChannel::class,
59+
SendGridChannel::class,
5960
// And any other channels you want can go here...
6061
];
6162
}

0 commit comments

Comments
 (0)