id(); $table->string('banner_image')->nullable(); $table->string('title'); $table->string('sub_title')->nullable(); $table->longText('description')->nullable(); $table->longText('sub_description')->nullable(); $table->enum('status',['1','2']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pages'); } };