share = $share; } public function render(): mixed { $shareUrl = route('share.download', $this->share); return view('livewire.share-created', [ 'shareUrl' => $shareUrl, 'qrCodeSvg' => app(QrCodeService::class)->svg($shareUrl), 'siteTitle' => Setting::get('site_title') ?: config('app.name'), ]); } }