love_php/app/Models/MatchmakerClient.php

17 lines
300 B
PHP
Raw Permalink Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Models\Base;
class MatchmakerClient extends Base
{
protected $fillable = [];
protected $guarded = [];
public function clientUser()
{
return $this->belongsTo(User::class, 'client_user_id', 'id');
}
}