<?php

class ProductQuant extends Eloquent {
  
	protected $table = "storage_product_types";
	protected $softDelete	 = true;
	protected $fillable = array('project_id', 'product_id', 'product_type_id', 'quant', 'quant_blocked');
	protected $guarded		 = array();
	public static $rules	 = array();

	public function product() {
		return $this->belongsTo('Product');
	}

	public function productType() {
		return $this->belongsTo('ProductType');
	}

}
