Export pdf in laravel

Install dompdf package composer require barryvdh/laravel-dompdf Enable GD & zip extension first (php.ini), then use this cmd. Goto config / app.php 'providers' => [ Barryvdh\DomPDF\ServiceProvider::class, ]; 'aliases' => [ 'PDF'…

0 Comments