Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function __invoke(Request $request) |
||
17 | { |
||
18 | // return $request->id; |
||
19 | |||
20 | |||
21 | $tip = TechTip::where('tip_id', $request->id)->with('EquipmentType')->with('FileUploads')->firstOrFail(); |
||
22 | |||
23 | $pdf = PDF::loadView('pdf.tech_tip', [ |
||
24 | 'details' => $tip, |
||
25 | ]); |
||
26 | |||
27 | |||
28 | return $pdf->stream(); |
||
29 | |||
35 |