aboutsummaryrefslogtreecommitdiff
path: root/app/RootTranslation.php
blob: d62414f41f91bb90aec27a86ffed37f824ed5c91 (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 RootTranslation extends Model {

    protected $table = 'root_translations';

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

}