Skip to content

Commit

Permalink
Missing comma in $hasOneThrough property (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmont authored Dec 29, 2024
1 parent c098467 commit 8fd3024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/relations.md
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ public $hasOneThrough = [
'userHistory' => [
'Acme\Supplies\Model\History',
'key' => 'supplier_id',
'through' => 'Acme\Supplies\Model\User'
'through' => 'Acme\Supplies\Model\User',
'throughKey' => 'user_id',
'otherKey' => 'id'
],
Expand Down

0 comments on commit 8fd3024

Please sign in to comment.