id(); $table->timestamps(); $table->foreignIdFor(Kid::class); $table->foreignIdFor(Course::class); $table->date('date')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('course_kid'); } };