This commit is contained in:
paoloar77
2024-05-14 17:54:41 +02:00
parent 0ce8a96097
commit dcf29f114b
6 changed files with 81 additions and 66 deletions

15
app/Mylog.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Mylog extends Model
{
public $subject = '*** PROD: ';
public static function getSubjectEmail(string $subject) {
return self::$subject . " " . $subject;
}
}