<?php namespace Onestartup\Shop\Model; use Illuminate\Database\Eloquent\Model; class ProductImageShop extends Model { protected $table = 'product_images_shop'; protected $fillable = [ 'path', 'description', 'product_id' ]; public function product() { return $this->belongsTo('Onestartup\Shop\Model\ProductShop', 'product_id'); } }