<?php 

/**
* This class manages projects for use by the mentors and mentees
*/
class Project extends Eloquent
{
	protected $table = 'projects';

	protected $fillable = array('title', 'link', 'language');

}