Projects/3BIT/winter-semester/IIS/xnecasr00/app/Models/Watering.php
2026-04-14 19:28:46 +02:00

26 lines
476 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Watering extends Treatment
{
/** @use HasFactory<\Database\Factories\WateringFactory> */
use HasFactory;
protected $table = 'waterings';
protected $primaryKey = 'treatment_id';
public $incrementing = false;
protected $keyType = 'int';
protected $fillable = [
'treatment_id',
'time_interval',
'amount',
'note',
];
}