This commit is contained in:
Juan Felipe Duarte
2025-07-31 15:19:22 -07:00
parent ca5fbd454a
commit c7586cf6cd
13 changed files with 215 additions and 34 deletions
+5 -1
View File
@@ -16,11 +16,15 @@ class Log_general extends Model
'detalle',
'tipo',
'historial_id'
];
public function user()
{
return $this->belongsTo(User::class);
}
public function historial()
{
return $this->belongsTo(Historiale::class);
}
}