id(); $table->string('name'); $table->string('surname'); $table->string('middleName')->nullable(); $table->string('photo')->nullable(); $table->string('position')->nullable(); $table->string('education'); $table->string('vk_link')->nullable(); $table->string('contactEmail')->nullable(); $table->string('contactPhone')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('students'); } };