reservationId = $reservationId; } public function handle(): void { $reservation = Reservation::find($this->reservationId); if (! $reservation) { return; } // Placeholder: real compositing would open master image, composite user image, // and write back to storage. For now, write a log/placeholder file. $path = "composite/reservation_{$reservation->id}.txt"; Storage::disk('public')->put($path, "Composited reservation {$reservation->id} at ".now()); } }