pdfUrl = Storage::disk('pdfs')->temporaryUrl($pdfId, now()->addMinutes(30)); } public function pageChanged($page) { $this->currentPage = $page; } public function annotationSaved($data) { // Procesar y guardar anotaciones $this->emit('refreshAnnotations'); } public function render() { return view('livewire.pdf-viewer'); } }