We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 658372f commit 337e076Copy full SHA for 337e076
README.md
@@ -303,6 +303,14 @@ public function xmlToPdf()
303
unlink($output.'.'.$ext);
304
}
305
```
306
+
307
308
+**Do not forget to write your route**
309
310
+```php
311
+Route::get('xml', 'ReportsController@xmlToPdf');
312
+```
313
314
**Note 3:**
315
316
To use the example above you must copy the sample files located at:
@@ -351,6 +359,13 @@ public function jsonToPdf()
351
359
352
360
353
361
362
363
364
365
366
+Route::get('json', 'ReportsController@jsonToPdf');
367
368
354
369
**Note 4:**
355
370
356
371
0 commit comments