2024-07-30 10:44:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Maintenance extends Model
|
|
|
|
{
|
|
|
|
use HasFactory;
|
2024-07-30 18:13:21 +02:00
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
|
|
|
'description',
|
|
|
|
'schedule',
|
|
|
|
];
|
2024-07-31 17:04:33 +02:00
|
|
|
|
|
|
|
public function history()
|
|
|
|
{
|
|
|
|
return $this->hasMany(MaintenanceHistory::class);
|
|
|
|
}
|
2024-07-31 18:45:14 +02:00
|
|
|
|
|
|
|
public function hosts()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany(Host::class, "maintenance_host", "maintenance_id", "host_id" );
|
|
|
|
}
|
2024-08-06 08:31:51 +02:00
|
|
|
|
|
|
|
public function tasks()
|
|
|
|
{
|
|
|
|
return $this->hasMany(MaintenanceTask::class,);
|
|
|
|
}
|
2024-07-30 10:44:58 +02:00
|
|
|
}
|