*/ public function definition(): array { return [ 'key' => Str::uuid()->toString(), 'hash' => Str::random(32), 'instance' => LicenseInstance::make( id: Str::uuid()->toString(), name: 'Koel Plus', createdAt: now(), ), 'meta' => LicenseMeta::make( customerId: $this->faker->numberBetween(1, 1000), customerName: $this->faker->name(), customerEmail: $this->faker->email() ), 'expires_at' => null, ]; } }