Skip to content

Commit 35b6c74

Browse files
committed
update README.md file
1 parent a2d2fd4 commit 35b6c74

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,11 @@ The `ticket` model has also a list of methods for interacting with another relat
162162
| Method | Arguments | Example | Description |
163163
|---|---|---|---|
164164
| `attachLabels` |`mixed` id, `array` attributes, `bool` touch | associate labels into an existing ticket | `$ticket->attachLabels([1,2,3,4])` |
165-
| `syncLabels` |`Model|array` ids, `bool` detouching | associate labels into an existing ticket | `$ticket->syncLabels([1,2,3,4])` |
165+
| `syncLabels` |`Model/array` ids, `bool` detouching | associate labels into an existing ticket | `$ticket->syncLabels([1,2,3,4])` |
166166
| `attachCategories` |`mixed` id, `array` attributes, `bool` touch | associate categories into an existing ticket | `$ticket->attachCategories([1,2,3,4])` |
167-
| `syncCategories` |`Model|array` ids, `bool` detouching | associate categories into an existing ticket | `$ticket->syncCategories([1,2,3,4])` |
167+
| `syncCategories` |`Model/array` ids, `bool` detouching | associate categories into an existing ticket | `$ticket->syncCategories([1,2,3,4])` |
168168
| `message` |`string` message | add new message on an existing ticket | `$ticket->message('A message in a ticket')` |
169-
| `messageAsUser` |`Model|null` user, `string` message | add new message on an existing ticket as a deffrent user | `$ticket->messageAsUser($user, 'A message in a ticket')` |
169+
| `messageAsUser` |`Model/null` user, `string` message | add new message on an existing ticket as a deffrent user | `$ticket->messageAsUser($user, 'A message in a ticket')` |
170170

171171
> The `attachCategories` and `syncCategories` methods, is an alternative for `attach` and `sync` laravel methods, and if you want to learn more, please take a look at this [link](https://laravel.com/docs/9.x/eloquent-relationships#attaching-detaching)
172172

0 commit comments

Comments
 (0)