faker->dateTimeBetween('-7 days', 'now'); return [ 'site_id' => Site::factory(), 'type' => $this->faker->randomElement(['hourly', 'daily', 'manual', 'snapshot']), 'size_bytes' => $this->faker->numberBetween(50_000_000, 2_000_000_000), 'status' => $this->faker->randomElement(['ok', 'ok', 'ok', 'failed']), 'storage_location' => 's3://clupilot-backups', 'completed_at' => $completedAt, ]; } public function failed(): self { return $this->state(['status' => 'failed']); } }