clrghouz/app/Models/SystemLog.php
2022-12-03 01:25:44 +11:00

15 lines
196 B
PHP

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