Add Calculationpresets and Calculator modules with CRUD functionality, migrations, and UI components.

This commit is contained in:
2026-01-24 13:23:03 +01:00
parent fd61f14ffe
commit 0356063015
14 changed files with 560 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Calculationpreset extends Model
{
// Calculationpreset Model
protected $table = 'calculatorpresets';
protected $primaryKey = 'id';
protected $fillable = [
'name',
'description',
'price_kwh',
'factor_printer',
'factor_maintenance',
'factor_price'
];
}