Snappy is a PHP library allowing thumbnails, snapshots, and PDF generation from a URL or HTML page.  Barry vd. Heuvel is the author of a  Laravel Snappy (which has been around since Laravel 5), making it even easier to integrate with Laravel:

// Generate a PDF From a view
$pdf = PDF::loadView('pdf.invoice', $data);
$pdf->download('invoice.pdf');

// Generate a PDF from a URL
PDF::loadFile('https://www.github.com')
     ->inline('github.pdf');

#news #laravel

Snappy Image Wrapper for Laravel
5.10 GEEK