Так что это довольно хорошо задокументировано в библиотеке Но я не могу заставить ее работать. Учтите следующее:
$pdf = PDF::loadView('modules.efapreports.pdf.invoice', [
'invoiceData' => $this->collection,
'organization' => $organization,
'invoiceNumber' => $this->formFields['invoice_number'],
'invoiceDate' => $this->formFields['invoice_date'],
'dueDate' => $this->formFields['due_date'],
'payementTerms' => $this->formFields['payment_terms'],
'gst' => 1.05,
]);
$pdf->save(storage_path(
'efapinvoices/' . $this->getPath() .'/'. $this->getFileName() . $this->getExtension()
));
$pdf->download(storage_path(
'efapinvoices/' . $this->getPath() .'/'. $this->getFileName() . $this->getExtension()
));
Это прекрасно его сохраняет, но не загружает. Нужно ли загружать файл PDF?