id(); $table->string('title'); $table->text('description'); $table->foreignId('user_id')->constrained(); $table->foreignId('client_id')->constrained(); $table->date('deadline_at'); $table->string('status'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('projects'); } };