uuid('id')->primary(); $table->string('code'); $table->timestamp('date')->nullable(); $table->uuid('customer_id')->nullable(); $table->decimal('total', 14, 2)->default(0); $table->timestamps(); $table->softDeletes(); $table->uuid('created_by')->nullable(); $table->uuid('updated_by')->nullable(); $table->uuid('deleted_by')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('sales'); } };