clrghouz/app/Models/SystemLog.php

22 lines
298 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SystemLog extends Model
{
const UPDATED_AT = null;
/* RELATIONS */
public function mailer()
{
return $this->belongsTo(Mailer::class);
}
public function system()
{
return $this->belongsTo(System::class);
}
}