love_php/app/Models/Match/RecommendLinkingV2.php

32 lines
625 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +08:00
<?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');
}*/
}