Files
apimacro/app/Mylog.php

22 lines
384 B
PHP
Raw Normal View History

2024-05-14 17:54:41 +02:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Mylog extends Model
{
2024-05-14 19:22:21 +02:00
public static $subject = '*** PROD: ';
2024-05-14 17:54:41 +02:00
2024-05-16 19:27:26 +02:00
public static $email = 'log@fioredellavita.it';
2024-05-14 17:54:41 +02:00
public static function getSubjectEmail(string $subject) {
return self::$subject . " " . $subject;
}
2024-05-16 19:27:26 +02:00
public static function getEmail() {
return self::$email;
}
2024-05-14 17:54:41 +02:00
}