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

    protected $table = 'tenses';

    protected $fillable = ['name', 'abbreviation'];

}