17 lines
277 B
PHP
17 lines
277 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class RecommendUser extends Model
|
||
|
|
{
|
||
|
|
protected $fillable = [];
|
||
|
|
protected $guarded = [];
|
||
|
|
|
||
|
|
public function otherUser()
|
||
|
|
{
|
||
|
|
return $this->hasOne(User::class, 'id', 'other_user_id');
|
||
|
|
}
|
||
|
|
}
|