summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Model/ScormModel.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Model/ScormModel.php b/src/Model/ScormModel.php
index d9ae680..35b2d4e 100644
--- a/src/Model/ScormModel.php
+++ b/src/Model/ScormModel.php
@@ -10,6 +10,25 @@ class ScormModel extends Model
{
/**
+ * The attributes that are mass assignable.
+ *
+ * @var array
+ */
+ protected $fillable = [
+ 'id',
+ 'resource_id',
+ 'resource_type',
+ 'title',
+ 'origin_file',
+ 'version',
+ 'ratio',
+ 'uuid',
+ 'entry_url',
+ 'created_at',
+ 'updated_at',
+ ];
+
+ /**
* Get the parent resource model (user or post).
*/
public function resourceable()