From fd946f74b559a748e8d9e29db10c4d4d2ec76c42 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 31 May 2019 08:21:16 -0500 Subject: [PATCH] formatting --- telescope.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telescope.md b/telescope.md index 66eef7333c..24f4364082 100644 --- a/telescope.md +++ b/telescope.md @@ -185,7 +185,7 @@ While the `filter` callback filters data for individual entries, you may use the ## Tagging -Telescope allows you to search entries by "tag". Telescope automatically tags many entries; however, you may occasionally want to attach custom tags to entries. To accomplish this, you may use the `Telescope::tags` method, which accepts a callback that should return an array of tags. These tags will be merged with any tags Telescope automatically attaches to the entry. Typically, you should call the `tags` method within your `TelescopeServiceProvider`: +Telescope allows you to search entries by "tag". Often, tags are Eloquent model class names or authenticated user IDs which Telescope automatically adds to entries. Occasionally, you may want to attach your own custom tags to entries. To accomplish this, you may use the `Telescope::tags` method. The `tags` method accepts a callback which should return an array of tags. The tags returned by the callback will be merged with any tags Telescope would automatically attach to the entry. You should call the `tags` method within your `TelescopeServiceProvider`: use Laravel\Telescope\Telescope;