diff options
Diffstat (limited to 'app/RootTranslation.php')
| -rw-r--r-- | app/RootTranslation.php | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/app/RootTranslation.php b/app/RootTranslation.php new file mode 100644 index 0000000..d62414f --- /dev/null +++ b/app/RootTranslation.php @@ -0,0 +1,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']; + +}
\ No newline at end of file | 
