id(); $table->string('name'); $table->foreignIdFor(Category::class)->constrained('categories'); $table->text('description')->nullable(); $table->string('website')->nullable(); $table->timestamps(); $table->softDeletes(); }); } public function down(): void { Schema::dropIfExists('programs'); } };