Skip to content

Tag: laravel

FPDF string output

I use OctoberCms (laravel). This uses own Filesystem https://octobercms.info/docs/services-filesystem-cdn/ That is why I need to take generated $pdf as a string, and than use Storage::put(‘docs/kek.pdf’, $pdf); But it isn’t works, because Output() anyway returns to $pdf only object. Have you…