• File: ProductCategory.php
  • Full Path: /home/masbinta/public_html/core/app/Models/ProductCategory.php
  • File size: 218 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class ProductCategory extends Model
{
    public function products()
    {
    	return $this->hasMany('App\Models\Product','category_id');
    }
}