id('name'); $table->string('name'); $table->foreignId('teacher_id'); $table->time('start_time'); $table->time('end_time'); // amount of students can be calculated }); } /** * Reverse the migrations. */ public function down(): void { Schema::drop('class'); } };