Compare commits

..

1 Commits

Author SHA1 Message Date
3360631cd6 WIP #98 Product Services Sum / Totals 2025-02-11 23:17:51 -05:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

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