id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->string('period_month', 7); $table->unsignedInteger('base_salary'); $table->unsignedInteger('bonus'); $table->unsignedInteger('deduction'); $table->unsignedInteger('total_salary'); $table->enum('is_paid', IsPaid::values())->default(IsPaid::NOT_PAID->value)->comment(IsPaid::comment()); $table->dateTime('paid_at')->nullable(); $table->timestamp('created_at')->useCurrent(); $table->timestamp('updated_at')->useCurrent()->useCurrentOnUpdate(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('payrolls'); } };