id(); $table->foreignId('customer_id')->constrained(); $table->string('name'); $table->string('project_number'); $table->text('description')->nullable(); $table->date('start_date')->nullable(); $table->date('end_date')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('projects'); } };