<?php namespace Onestartup\Shop\Model; use Illuminate\Database\Eloquent\Model; class ProductShopInfo extends Model { protected $table = 'product_shop_infos'; protected $fillable = [ 'unity', 'purchase_price', 'sale_price', 'quantity', 'reserve_amount', 'product_id' ]; public function product() { return $this->belongsTo('Onestartup\Shop\Model\ProductShop', 'product_id'); } }