*/ use HasFactory, HasUuids; /** Append-only: a call is never updated, so there is no `updated_at`. */ const UPDATED_AT = null; protected $fillable = [ 'user_id', 'tool', ]; /** @return BelongsTo */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }