id(); $table->foreignId('karyawan_id')->nullable()->constrained()->onDelete('cascade'); $table->foreignId('kloter_id')->nullable()->constrained()->onDelete('cascade'); $table->date('tanggal'); $table->time('jam_masuk')->nullable(); $table->time('jam_pulang')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('presensis'); } };