Skip to content

Instantly share code, notes, and snippets.

@EricMcWinNer
Created January 11, 2021 00:15
Show Gist options
  • Save EricMcWinNer/7fce5fbc45eca3b3f94eee5956f0a533 to your computer and use it in GitHub Desktop.
Save EricMcWinNer/7fce5fbc45eca3b3f94eee5956f0a533 to your computer and use it in GitHub Desktop.
<?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