Update finishing.blade.php

This commit is contained in:
Julian Prieber 2023-06-19 14:05:54 +02:00
parent ab958a71dc
commit 3b58846e9a

View File

@ -89,6 +89,13 @@ use App\Models\Page;
}
} catch (Exception $e) {}
try {
$vendorLangPath = resource_path('lang/vendor');
if (File::exists($vendorLangPath)) {
File::deleteDirectory($vendorLangPath);
}
} catch (Exception $e) {}
// Footer page customization
if(EnvEditor::keyExists('DISPLAY_FOOTER_HOME')){} else {EnvEditor::addKey('DISPLAY_FOOTER_HOME', 'true');}
if(EnvEditor::keyExists('DISPLAY_FOOTER_TERMS')){} else {EnvEditor::addKey('DISPLAY_FOOTER_TERMS', 'true');}