public function up() { Schema::create('sliders', function (Blueprint $table) { $table->id(); $table->string('title'); $table->string('subtitle')->nullable(); $table->string('image'); $table->timestamps(); }); }