<?php 

use Illuminate\Database\Eloquent\SoftDeletingTrait;

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

	protected $softDelete = true;

	protected $dates = ['deleted_at'];

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

}