wyyl/plugins/Guangda/Seller/Models/Product.php

14 lines
245 B
PHP

<?php
namespace Plugin\Guangda\Seller\Models;
class Product extends \App\Models\Product
{
public function getFillable(): array
{
$fillable = $this->fillable;
$fillable[] = 'seller_id';
return $fillable;
}
}