clrghouz/app/Models/SystemLog.php

15 lines
196 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
{
/* RELATIONS */
public function system()
{
return $this->belongsTo(System::class);
}
}