2022-12-02 22:54:02 +11:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class SystemLog extends Model
|
|
|
|
{
|
|
|
|
/* RELATIONS */
|
|
|
|
|
2023-12-10 19:07:53 +11:00
|
|
|
public function mailer()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Mailer::class);
|
|
|
|
}
|
|
|
|
|
2022-12-02 22:54:02 +11:00
|
|
|
public function system()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(System::class);
|
|
|
|
}
|
|
|
|
}
|