DONE: layout letter with letterhead and footer, notification for newly...

This commit is contained in:
ISMAIL MASSERAN
2026-06-28 02:16:49 +00:00
parent 94ecbe5887
commit 034ecf947f
400 changed files with 29802 additions and 5446 deletions
+36
View File
@@ -0,0 +1,36 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Node / Puppeteer paths
|--------------------------------------------------------------------------
|
| Browsershot shells out to Node and uses Puppeteer from node_modules.
| node_module_path should point to the directory that contains node_modules/.
|
*/
'node_binary' => env('BROWSERSHOT_NODE_BINARY'),
'npm_binary' => env('BROWSERSHOT_NPM_BINARY'),
'node_module_path' => env('BROWSERSHOT_NODE_MODULE_PATH', base_path()),
'chrome_path' => env('BROWSERSHOT_CHROME_PATH'),
/*
|--------------------------------------------------------------------------
| Chrome sandbox
|--------------------------------------------------------------------------
|
| Disable sandbox in Docker/Linux containers where Chrome cannot run sandboxed.
|
*/
'no_sandbox' => env('BROWSERSHOT_NO_SANDBOX', false),
'timeout' => (int) env('BROWSERSHOT_TIMEOUT', 60),
];