Update AccountLog model, add fillable attribute

pull/2602/head
Daniel Supernault 5 years ago
parent 090b6d0336
commit 1ac60173af
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -6,6 +6,9 @@ use Illuminate\Database\Eloquent\Model;
class AccountLog extends Model
{
protected $fillable = ['*'];
public function user()
{
return $this->belongsTo(User::class);

Loading…
Cancel
Save