id(); $table->string('name'); $table->text('description'); $table->string('slug'); $table->integer('position'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('admissions'); } };