love_php/app/Models/UpperWallHistory.php

20 lines
339 B
PHP
Raw Permalink Normal View History

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