<?php 

class Blog extends \Eloquent 
{
	protected $table = 'blogs';

	protected $fillable = array('title', 'body', 'author');

	protected $rules = array(
		'title'  => 'required|min:5',
	    'body'   => 'required|min:100',
	    'author' =>  'required'
	);
}