id(); $table->foreignIdFor(Course::class); $table->integer('order'); $table->text('title'); $table->text('duration')->nullable(); $table->text('link'); $table->text('video_link'); $table->integer('video_size'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('chapters'); } };