Skip to content

Commit

Permalink
Update installation-and-setup.md (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrififi authored Jun 14, 2024
1 parent 4a4a4b1 commit 2d21950
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/installation-and-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,19 @@ return [
* The fully qualified class name of the tag model.
*/
'tag_model' => Spatie\Tags\Tag::class,

/*
* The name of the table associated with the taggable morph relation.
*/
'taggable' => [
'table_name' => 'taggables',
'morph_name' => 'taggable',

/*
* The fully qualified class name of the pivot model.
*/
'class_name' => Illuminate\Database\Eloquent\Relations\MorphPivot::class,
]
];
```

0 comments on commit 2d21950

Please sign in to comment.