Skip to content

Commit 0cb1ca5

Browse files
Update Notifications docs
1 parent 7ddb84f commit 0cb1ca5

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed

resources/views/docs/desktop/1/the-basics/notifications.md

+89
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,97 @@ Notification::title('Hello from NativePHP')
4040
->show();
4141
```
4242

43+
### Notification Reference
44+
45+
To keep track of different notifications, each notification gets a reference once created. You can manually set a reference using the `reference()` method.
46+
By default, the current unix timestamp is used as the reference. Once the notification is shown, the reference is stored in the notification class.
47+
48+
```
49+
$notification = Notification::title('Hello from NativePHP')->show();
50+
$notification->reference; // <-- This property contains the reference
51+
```
52+
53+
## Configuring Notifications
54+
55+
### Notification Title
56+
57+
You may set the notification's title using the `title()` method.
58+
59+
```php
60+
Notification::title('Hello from NativePHP')
61+
->show();
62+
```
63+
64+
### Notification Reference
65+
66+
You can use the `reference()` method to set an event identifier and track which notification triggered a certain event.
67+
This reference will be sent along with any event triggered by the notification. By default, the current unix timestamp is used as the reference.
68+
69+
```php
70+
Notification::title('Hello from NativePHP')
71+
->reference(Str::uuid())
72+
->show();
73+
```
74+
75+
### Notification Message
76+
77+
You may set the notification's message using the `message()` method.
78+
79+
```php
80+
Notification::title('Hello from NativePHP')
81+
->message('This is a detail message coming from your Laravel app.')
82+
->show();
83+
```
84+
85+
### Notification Reply
86+
87+
On macOS, you can allow the user to reply to a notification using the `hasReply()` method.
88+
89+
```php
90+
Notification::title('Hello from NativePHP')
91+
->hasReply()
92+
->show();
93+
```
94+
95+
The `hasReply()` method accepts a placeholder reply message as an argument.
96+
97+
```php
98+
Notification::title('Hello from NativePHP')
99+
->hasReply('This is a placeholder')
100+
->show();
101+
```
102+
103+
### Notification Actions
104+
105+
On macOS, you can add action buttons to a notification using the `addAction()` method.
106+
107+
```php
108+
Notification::title('Hello from NativePHP')
109+
->addAction('Click here')
110+
->show();
111+
```
112+
113+
You can call the `addAction()` method multiple times if you need to add multiple buttons.
114+
115+
```php
116+
Notification::title('Hello from NativePHP')
117+
->addAction('Button One')
118+
->addAction('Button Two')
119+
->show();
120+
```
121+
43122
## Events
44123

45124
### `NotificationClicked`
46125
The `Native\Laravel\Events\Notifications\NotificationClicked` event is dispatched when a user clicks on a notification.
47126

127+
### `NotificationClosed`
128+
The `Native\Laravel\Events\Notifications\NotificationClosed` event is dispatched when a user closes a notification.
129+
130+
### `NotificationReply`
131+
The `Native\Laravel\Events\Notifications\NotificationReply` event is dispatched when a user replies to a notification.
132+
133+
### `NotificationActionClicked`
134+
The `Native\Laravel\Events\Notifications\NotificationActionClicked` event is dispatched when a user clicks an action button on a notification.
135+
136+
The `$index` references to the order of the buttons. The first button added has an index of `0`.

0 commit comments

Comments
 (0)