Stream() is not working, gets downloaded automatically

42 Views Asked by At

Actually I am trying to stream pdf file in browser by using laravel snappy pdf. But it gets download all time.

$pdf = \PDF::loadView('sale::print-pos', [
    'sale' => $sale,
])
    ->setPaper('a7')
    ->setOption('margin-top', 8)
    ->setOption('margin-bottom', 8)
    ->setOption('margin-left', 5)
    ->setOption('margin-right', 5);

return $pdf->stream('sale-'. $sale->reference .'.pdf');
0

There are 0 best solutions below