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

20 lines
336 B
PHP

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