Update ModLog model, add fillable attribute

pull/2147/head
Daniel Supernault 5 years ago
parent 542ad12bc3
commit c7ccb26ffc
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -8,6 +8,8 @@ class ModLog extends Model
{
protected $visible = ['id'];
protected $fillable = ['*'];
public function admin()
{
return $this->belongsTo(User::class, 'user_id');

Loading…
Cancel
Save