<?php namespace App; use Illuminate\Database\Eloquent\Model; class Subproduct extends Model { protected $fillable = ['subproductName', 'product_id']; public function product() { return $this->belongsTo('App\Product', 'product_id'); } }