* @created 2022-07-04 21:18:54 * @modified 2022-07-04 21:18:54 */ namespace Beike\Models; use Illuminate\Database\Eloquent\Model; class OrderProduct extends Model { protected $fillable = [ 'product_id', 'order_number', 'product_sku', 'name', 'image', 'quantity', 'price', ]; }