*/ use HasFactory; protected $table = 'fertilizations'; protected $primaryKey = 'treatment_id'; public $incrementing = false; protected $keyType = 'int'; protected $fillable = [ 'treatment_id', 'substance', 'concentration', 'note', ]; protected $casts = [ 'concentration' => 'float', ]; }