increments('id'); $table->text('name')->nullable(); $table->text('slug')->nullable(); $table->integer('user_id')->nullable(); $table->string('status', 50)->nullable(); $table->json('image')->nullable(); $table->string('address', 50)->nullable(); $table->string('contact', 50)->nullable(); $table->text('brand')->nullable(); $table->text('Email')->nullable(); $table->json('region')->nullable(); $table->string('coordinates', 50)->nullable(); $table->string('hour', 50)->nullable(); $table->string('monday', 50)->nullable(); $table->string('tuesday', 50)->nullable(); $table->string('wednesday', 50)->nullable(); $table->string('thursday', 50)->nullable(); $table->string('friday', 50)->nullable(); $table->string('saturday', 50)->nullable(); $table->string('sunday', 50)->nullable(); $table->string('coordinate', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('branches'); } }