id(); $table->morphs('authenticatable'); $table->string('panel_id')->nullable(); $table->text('name'); $table->text('credential_id'); $table->json('data'); $table->timestamp('last_used_at')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('passkeys'); } };