Posts

Showing posts from November, 2020

PDF

https://github.com/barryvdh/laravel-dompdf or https://laravel-excel.com/ 1 composer   require   barryvdh / laravel - dompdf 2 'providers'  => [  ....  Barryvdh\DomPDF\ ServiceProvider :: class, ], 3 'aliases'  => [  ....   'PDF'  => Barryvdh\DomPDF\ Facade :: class, ] 4 Route :: get ( '/customer/print-pdf' , [  'as'  =>  'customer.printpdf, ' uses ' => ' CustomerController @ printPDF ']); 5 public function printPDF() {     $userReport = array(                 [                 ' name ' => ' vishnu ',                 ' email ' => ' xyz @ gmail . com ',     ...