Skip to content

Commit

Permalink
feat: default notification title (#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
SRWieZ authored Dec 29, 2024
1 parent b719ccc commit a0cc732
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down

0 comments on commit a0cc732

Please sign in to comment.