Я использую 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
Пожалуйста, помогите.