17 lines
338 B
PHP
17 lines
338 B
PHP
|
<?php
|
||
|
|
||
|
namespace App;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
||
|
|
||
|
class DomainUser extends Pivot
|
||
|
{
|
||
|
//
|
||
|
public function domain()
|
||
|
{
|
||
|
// return $this->belongsTo('App\Post', 'foreign_key', 'other_key');
|
||
|
return $this->belongsTo('App\Domain','domain','domain');
|
||
|
}
|
||
|
}
|