love_php/app/Models/RecommendUser.php
2026-04-02 09:20:51 +08:00

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');
}
}