create([ 'shareable_type' => $file->getMorphClass(), 'shareable_id' => $file->id, 'token' => $token ?? Str::random(32), 'created_by' => $creator->id, 'expires_at' => $expiresAt, 'max_downloads' => $maxDownloads, ]); $this->activity->log(Action::ShareLinkCreated, subject: $file); return $link; } }