32 lines
625 B
PHP
32 lines
625 B
PHP
<?php
|
|
|
|
namespace App\Models\Match;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
class RecommendLinkingV2 extends Model
|
|
{
|
|
protected $fillable = [];
|
|
protected $guarded = [];
|
|
protected $table = "recommend_linking_news";
|
|
|
|
|
|
/* public function otherUser()
|
|
{
|
|
return $this->hasOne(User::class, 'id', 'id_users_right');
|
|
}
|
|
|
|
public function profileCourtship()
|
|
{
|
|
return $this->hasOne(ProfileCourtship::class, 'user_id', 'id_users_right');
|
|
}
|
|
|
|
public function recommendLogs()
|
|
{
|
|
return $this->hasOne(RecommendSingleHistory::class, 'user_id', 'id_users_left');
|
|
}*/
|
|
|
|
|
|
}
|