Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
39 | public function handle() |
||
40 | { |
||
41 | PDF::SetTitle('Export Data.'); |
||
42 | PDF::AddPage(); |
||
43 | PDF::writeHTML($this->html); |
||
44 | $pdfString = PDF::Output('hello_world.pdf', 'S'); |
||
45 | Storage::disk('local')->put('pdf.pdf', $pdfString); |
||
46 | event(new QueueProcessed(storage_path().'/app/pdf.pdf', $this->table_id)); |
||
47 | } |
||
49 |