<?php

class Role extends \Eloquent {

	protected $softDelete	 = true;
	protected $guarded		 = array();

	const ROLE_LEADS					 = 1;
	const ROLE_CRM						 = 2;
	const ROLE_CRM_STAT				 = 3;
	const ROLE_LOGISTICS			 = 4;
	const ROLE_PRODUCTS_EDITOR = 5;
	const ROLE_USERS_EDITOR		 = 6;
	const ROLE_PROJECTS_EDITOR = 7;
	const ROLE_PRODUCTION			 = 8;
	const ROLE_PACKING				 = 9;
	const ROLE_FRANCHISEES		 = 10;
	const ROLE_AGENT					 = 11;
	const ROLE_SIZER					 = 12;

}
