20 lines
350 B
PHP
20 lines
350 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use App\Models\Live\Viewer;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class ShareFundLog extends Model
|
||
|
|
{
|
||
|
|
//
|
||
|
|
|
||
|
|
public function viewer(){
|
||
|
|
return $this->belongsTo(Viewer::class, 'viewer_id');
|
||
|
|
}
|
||
|
|
|
||
|
|
public function otherViewer(){
|
||
|
|
return $this->belongsTo(Viewer::class, 'other_viewer_id');
|
||
|
|
}
|
||
|
|
}
|