Created
January 11, 2021 00:15
-
-
Save EricMcWinNer/7fce5fbc45eca3b3f94eee5956f0a533 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
namespace App\Models; | |
use Illuminate\Database\Eloquent\Model; | |
class Company extends Model | |
{ | |
/** | |
* Get this company's document | |
*/ | |
public function document() | |
{ | |
return $this->morphOne(Document::class, 'documentable'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment