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

18 lines
290 B
PHP

<?php
namespace App\Models;
use App\Models\Base;
use Illuminate\Database\Eloquent\Model;
class UserGift extends Base
{
protected $fillable = [];
protected $guarded = [];
public function gift()
{
return $this->belongsTo('App\Models\Gift', 'gift_id', 'id');
}
}