id(); $table->string('heading')->nullable(); $table->text('text')->nullable(); $table->string('button_text')->nullable(); $table->string('button_link')->nullable(); $table->string('photo')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('sliders'); } };