aboutsummaryrefslogtreecommitdiff
path: root/app/Stem.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Stem.php')
-rw-r--r--app/Stem.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/Stem.php b/app/Stem.php
new file mode 100644
index 0000000..e24a005
--- /dev/null
+++ b/app/Stem.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 Stem extends Model {
+
+ protected $table = 'stems';
+
+ protected $fillable = ['name'];
+
+} \ No newline at end of file