Skip to content

Commit e41d0b6

Browse files
authored
Fix relation type.
1 parent 8fd3024 commit e41d0b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/relations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ class Supplier extends Model
751751

752752
The first array parameter passed to the `$hasOneThrough` property is the name of the final model we wish to access, while the `through` key is the name of the intermediate model.
753753

754-
Typical foreign key conventions will be used when performing the relationship's queries. If you would like to customize the keys of the relationship, you may pass them as the `key`, `otherKey` and `throughKey` parameters to the `$hasManyThrough` definition. The `key` parameter is the name of the foreign key on the intermediate model, the `throughKey` parameter is the name of the foreign key on the final model, while the `otherKey` is the local key.
754+
Typical foreign key conventions will be used when performing the relationship's queries. If you would like to customize the keys of the relationship, you may pass them as the `key`, `otherKey` and `throughKey` parameters to the `$hasOneThrough` definition. The `key` parameter is the name of the foreign key on the intermediate model, the `throughKey` parameter is the name of the foreign key on the final model, while the `otherKey` is the local key.
755755

756756
```php
757757
// Property style

0 commit comments

Comments
 (0)