On this page
Customization
Custom Models
If you want to use a custom pivot model for markable relationships, simply create your own model that uses the Mark trait. Then, register it in your AppServiceProvider:
1use LaraZeus\Mark\Facades\Mark;2 3Mark::likeMorphPivotModel(YourOwnLikeMorphPivotClass::class)