id(); $table->string('name')->nullable(); $table->string('photo')->nullable(); $table->string('whatsapp')->nullable(); $table->decimal('basic_salary', 12, 2)->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('employees'); } }