log
This commit is contained in:
15
app/Mylog.php
Normal file
15
app/Mylog.php
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user