file_put_contents (xxx.pdf): не удалось открыть поток: нет такого файла или каталога " - PullRequest
0 голосов
/ 05 ноября 2018

Я использую barryvdh/laravel-dompdf для создания моих PDF-документов. Я создал функцию в контроллере для создания п.п.м. Но теперь я хочу сохранить PDF.

 $myData = array('data' => $data);

 if (!empty($data)){

   // Send data to the view using loadView function of PDF facade
   $pdf = PDF::loadView('pdf.invoice', $myData);

   // If you want to store the generated pdf to the server then you can use the 
   store function

   // Finally, you can download the file using download functio
   $pdf->save(storage_path('invoices\INV'.$year.Auth::user()->lab_id.'.pdf'));

   return $pdf->download('invoice.pdf');
 }

Однако теперь я получаю сообщение об ошибке

file_put_contents(C:\laragon\www\WebPTS\storage\invoices\INV201846.pdf): failed to open stream: No such file or directory

Пожалуйста, помогите.

1 Ответ

0 голосов
/ 16 ноября 2018

Мне не терпится получить документ для загрузки этих файлов в Dropbox. https://itsolutionstuff.com/post/laravel-5-dropbox-api-file-upload-example-using-league-flysystem-dropbox-packageexample.html

...