<?php

class ProductType extends Eloquent {

	protected $softDelete	 = true;
	protected $guarded		 = array();
	public static $rules	 = array();

	public function productPrices() {
		return $this->hasMany('ProductPrice');
	}
	
	public function productQuant() {
		return $this->hasMany('ProductQuant');
	}
	
	public function product() {
		return $this->belongsTo('Product');
	}
}
