clrghouz/app/Models/SystemLog.php

22 lines
298 B
PHP
Raw Normal View History

2022-12-02 11:54:02 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SystemLog extends Model
{
2024-11-08 10:29:30 +00:00
const UPDATED_AT = null;
2022-12-02 11:54:02 +00:00
/* RELATIONS */
public function mailer()
{
return $this->belongsTo(Mailer::class);
}
2022-12-02 11:54:02 +00:00
public function system()
{
return $this->belongsTo(System::class);
}
}