Item Type
Item Name
Search file in folder and subfolders...
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class ProductCategory extends Model { public function products() { return $this->hasMany('App\Models\Product','category_id'); } }