increments('id'); $table->integer('customer_id')->nullable(); $table->string('category', 255)->nullable(); $table->string('name', 255)->nullable(); $table->text('logo')->nullable(); $table->text('about')->nullable(); $table->text('services')->nullable(); $table->text('slider')->nullable(); $table->text('gallery')->nullable(); $table->integer('location_details')->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('crm_customer_websites'); } }