From 46f3e19b89f5b6253c4953bc4deab09e9b3b3a95 Mon Sep 17 00:00:00 2001 From: Eser DENIZ Date: Wed, 25 Dec 2024 21:57:40 +0100 Subject: [PATCH] feat: default notification title --- src/Notification.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Notification.php b/src/Notification.php index 82d13d8..fe290e7 100644 --- a/src/Notification.php +++ b/src/Notification.php @@ -12,7 +12,9 @@ class Notification protected string $event = ''; - final public function __construct(protected Client $client) {} + final public function __construct(protected Client $client) { + $this->title = config('app.name'); + } public static function new() {