Invoices can be uploaded
This commit is contained in:
19
app/Repositories/PageTextRepository.php
Normal file
19
app/Repositories/PageTextRepository.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Repositories;
|
||||
|
||||
use App\Models\PageText;
|
||||
|
||||
class PageTextRepository {
|
||||
public function getPageText(string $name) : string {
|
||||
$name = strtoupper($name);
|
||||
$pageText = PageText::where(['name' => $name])->first();
|
||||
if (null === $pageText) {
|
||||
PageText::create(['name' => $name, 'content' => '']);
|
||||
|
||||
|
||||
return strtoupper($name);
|
||||
}
|
||||
return $pageText->content;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user