dev-001 #1

Merged
th.guenther merged 47 commits from dev-001 into main 2026-04-26 17:44:57 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 9fd6839878 - Show all commits

View File

@@ -33,7 +33,7 @@ class UploadFileProvider {
$invoiceFile = new InvoiceFile();
$invoiceFile->filename = $filename;
$invoiceFile->path = $path;
$invoiceFile->fullPath = $path;
return $invoiceFile;
} catch (\Exception $e) {
return null;

View File

@@ -9,7 +9,7 @@ class PageTextRepository {
$name = strtoupper($name);
$pageText = PageText::where(['name' => $name])->first();
if (null === $pageText) {
PageText::create(['name' => $name, 'content' => '']);
PageText::create(['name' => $name, 'content' => $name]);
return strtoupper($name);