<?php namespace App; use Illuminate\Database\Eloquent\Model; class SubcategoryProduct extends Model { protected $fillable = ['subcategory_id','product_id']; public function products(){ return $this->hasMany( Product::class, 'id', 'product_id' )->with('productImages','productAttributes'); } public function subcategory(){ return $this->belongsTo( Subcategories::class, 'id', 'category_id' ); } }