Skip to content

Commit f981151

Browse files
authored
Laravel 10.x docs: Fix incorrect link to method-str-ordered-uuid. (#9119)
1 parent b83d157 commit f981151

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eloquent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ If you would like a model to use a UUID key instead of an auto-incrementing inte
221221

222222
$article->id; // "8f8e8478-9035-4d23-b9a7-62f4d2612ce5"
223223

224-
By default, The `HasUuids` trait will generate ["ordered" UUIDs](/docs/{{version}}/helpers#method-str-ordered-uuid) for your models. These UUIDs are more efficient for indexed database storage because they can be sorted lexicographically.
224+
By default, The `HasUuids` trait will generate ["ordered" UUIDs](/docs/{{version}}/strings#method-str-ordered-uuid) for your models. These UUIDs are more efficient for indexed database storage because they can be sorted lexicographically.
225225

226226
You can override the UUID generation process for a given model by defining a `newUniqueId` method on the model. In addition, you may specify which columns should receive UUIDs by defining a `uniqueIds` method on the model:
227227

0 commit comments

Comments
 (0)