Update AccountLog model, add fillable attribute

This commit is contained in:
Daniel Supernault 2021-01-30 19:56:31 -07:00
parent 090b6d0336
commit 1ac60173af
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 3 additions and 0 deletions

View File

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