Update SettingsController.php
This commit is contained in:
parent
cb89f65885
commit
f9206fd7ce
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ class SettingsController extends Controller
|
|||
$res = $zip->open($zip_safe_path, ZipArchive::CREATE|ZipArchive::OVERWRITE);
|
||||
$result = $this::rglob(storage_path('app/invoice/*'));
|
||||
if ($res === TRUE) {
|
||||
$zip->addFromString("1. Info.txt","This Archive contains all Invoices from all Users!");
|
||||
$zip->addFromString("1. Info.txt","This Archive contains all Invoices from all Users!\n If there are no Invoices here, no Invoices have ever been created!");
|
||||
foreach($result as $file){
|
||||
if (file_exists($file) && is_file($file)) {
|
||||
$zip->addFile($file,basename($file));
|
||||
|
|
Loading…
Add table
Reference in a new issue