15 lines
196 B
PHP
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);
|
||
|
}
|
||
|
}
|