'How can we get and show pdf from livewire temp folder in laravel

how to get pdf file link from a temp folder of livewire in Laravel.

 public function updatedfile()
  {
     $this->pdflink = $temppdflink;

     $this->dispatchBrowserEvent('pdflink-updated', ['pdflink' => $temppdflink]);
  }

here i am getting the local path of pdf which is actually stored in storage>livewire-tmp folder and the path can't be accessed



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source