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

18 lines
310 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ServiceClient extends Model
{
public function client()
{
return $this->hasOne(User::class, 'id', 'client_user_id');
}
public function user()
{
return $this->hasOne(User::class, 'id', 'user_id');
}
}