id(); $table->string('image'); $table->string('heading'); $table->string('link')->nullable(); $table->integer('status')->default(1); $table->integer('ordering')->default(1000); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('slides'); } };