mentors

mentors Git Source Tree


Root/app/models/Blog.php

<?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'
	);
}

Archive Download this file

Branches

Number of commits:
Page rendered in 0.11496s using 11 queries.