aboutsummaryrefslogtreecommitdiff
path: root/app/Root.php
blob: 5f52e8ef7c199a97df7630b68dd7341c4f881d0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/**
 * Created by PhpStorm.
 * User: camil
 * Date: 1/4/16
 * Time: 4:06 PM
 */
namespace HebrewParseTrainer;

use Illuminate\Database\Eloquent\Model;

class Root extends Model {

    protected $table = 'roots';

    protected $fillable = ['root', 'strong'];

}