Work to invoice
This commit is contained in:
parent
224bf9e951
commit
02e78e7255
101 changed files with 23483 additions and 154 deletions
|
|
@ -38,7 +38,7 @@ return array(
|
|||
* Times-Roman, Times-Bold, Times-BoldItalic, Times-Italic,
|
||||
* Symbol, ZapfDingbats.
|
||||
*/
|
||||
"font_dir" => storage_path('fonts/'), // advised by dompdf (https://github.com/dompdf/dompdf/pull/782)
|
||||
"font_dir" => storage_path('fonts'), // advised by dompdf (https://github.com/dompdf/dompdf/pull/782)
|
||||
|
||||
/**
|
||||
* The location of the DOMPDF font cache directory
|
||||
|
|
@ -48,7 +48,7 @@ return array(
|
|||
*
|
||||
* Note: This directory must exist and be writable by the webserver process.
|
||||
*/
|
||||
"font_cache" => storage_path('fonts/'),
|
||||
"font_cache" => storage_path('fonts'),
|
||||
|
||||
/**
|
||||
* The location of a temporary directory.
|
||||
|
|
@ -132,7 +132,7 @@ return array(
|
|||
* the desired content might be different (e.g. screen or projection view of html file).
|
||||
* Therefore allow specification of content here.
|
||||
*/
|
||||
"default_media_type" => "screen",
|
||||
"default_media_type" => "print",
|
||||
|
||||
/**
|
||||
* The default paper size.
|
||||
|
|
@ -149,7 +149,7 @@ return array(
|
|||
* Used if no suitable fonts can be found. This must exist in the font folder.
|
||||
* @var string
|
||||
*/
|
||||
"default_font" => "serif",
|
||||
"default_font" => "sans-serif",
|
||||
|
||||
/**
|
||||
* Image DPI setting
|
||||
|
|
@ -184,7 +184,7 @@ return array(
|
|||
*
|
||||
* @var int
|
||||
*/
|
||||
"dpi" => 150,
|
||||
"dpi" => 300,
|
||||
|
||||
/**
|
||||
* Enable inline PHP
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue