niklasravnsborg / laravel-pdf

📄 Laravel PDF
708 stars 211 forks source link

can`t get path after saving the pdf file #193

Open OthmanAlseagh opened 3 years ago

OthmanAlseagh commented 3 years ago

when I use save function

$pdf = Pdf::loadView('pdf.invoice', ['data' => $data]); $name = 'receipt-#'.$data['order']->order_number.'1.pdf'; $path = $pdf->save($name,'F');

i want to get the file path so i can donload it with laravel nova action

   return  Action::download(url(path),$name);

note: laravel nova does not use $pdf->download($name)

how i can solve this issue???????????????????