Skip to content

Instantly share code, notes, and snippets.

@EricMcWinNer
Created January 11, 2021 00:14
Show Gist options
  • Save EricMcWinNer/dd9da44d16abc40ac63474db45a1b1db to your computer and use it in GitHub Desktop.
Save EricMcWinNer/dd9da44d16abc40ac63474db45a1b1db to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Broker extends Model
{
/**
* Get the owner of the relationship which could either be a broker or a company
*/
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