Compare commits

..

2 Commits

Author SHA1 Message Date
4955780f67 WIP #92 Implement qoutes feedback 2025-02-12 13:32:39 -05:00
cab2b2c478 #98 Product Services Sum / Totals 2025-02-12 13:32:24 -05:00
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ class ScreenPrintEntry extends Model
'flash',
'fleece',
'poly_ink',
'other_charges',
'artwork_fee',
'notes',
];

View File

@ -28,7 +28,7 @@ public function up(): void
$table->decimal('flash', 8, 2)->default(false);
$table->decimal('fleece', 8, 2)->default(false);
$table->decimal('poly_ink', 8, 2)->default(false);
$table->decimal('other_charges', 8, 2)->default(false);
$table->decimal('artwork_fee', 8, 2)->default(false);
$table->text('notes')->nullable();
$table->timestamps();