// database/migrations/xxxx_create_banners_table.php public function up() { Schema::create('banners', function (Blueprint $table) { $table->id(); $table->string('title'); $table->string('subtitle')->nullable(); $table->string('image'); $table->string('button_text')->nullable(); $table->string('button_link')->nullable(); $table->integer('order')->default(0); $table->boolean('is_active')->default(true); $table->timestamps(); }); }