Created
January 30, 2017 16:43
-
-
Save joetannenbaum/55038a628795ae5745d0b339ea17a49e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class MyModel extends Model | |
{ | |
public function history() | |
{ | |
return $this->morphMany(History::class, 'my_model_table', 'reference_table', 'reference_id'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment