goodsnotices/app/Models/GoodsItem.php

21 lines
472 B
PHP
Raw Normal View History

2024-05-26 14:06:21 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* @property Good $good
*/
class GoodsItem extends Base
{
public $fillable = [
'item_id', 'brand', 'color_name', 'sell_point', 'specifications', 'shop_url', 'product_images', 'images',
'product_infos', 'app_introduce', 'applet_introduce'
];
public function Good () : BelongsTo{
return $this->belongsTo(Good::class, 'item_id', 'itemid');
}
}