<?php namespace App\Http\Controllers; use App\Models\InvoiceReport; use Spatie\Browsershot\Browsershot; use Spatie\LaravelPdf\Facades\Pdf; class PdfController extends Controller { public function invoiceReport(int $id) { $invoiceReport = InvoiceReport::find($id); $url = strtolower('invoicereport-'.$invoiceReport->internal_id.'.pdf'); Pdf::view('pdf.invoice-report', ['invoiceReport' => $invoiceReport]) ->withBrowsershot(function (Browsershot $browsershot) { $browsershot->noSandbox(); }) ->margins(8, 8, 15, 8) ->footerView('pdf.invoice-report-footer', ['invoiceReport' => $invoiceReport]) ->save($url); return redirect($url); } }