Plugin requires October build 300+.
PDFTemplate::render()
method was removed. Please switch to Renatio\DynamicPDF\Classes\PDF
facade.
Method setOrientation
was removed. Use setPaper
instead.
Plugin requires Stable version of October and PHP >=5.5.9.
Plugin requires OctoberCMS build 420+ with Laravel 5.5 and PHP >=7.0.
Plugin requires PHP >=7.1 to work with the latest version of dompdf library.
For October composer based installation you must manually update project composer.json file to use at least PHP 7.1:
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.1"
}
},
After this change run composer update
command.
Using setOptions
method to change dompdf options is no longer recommended. This will cause to override all laravel dompdf configuration and use only specified by method argument and dompdf defaults for rest options not set by a developer.
Instead of using this method, please use dynamic method call for option you would like to change. Please read more in documentation.