ventas = $ventas; $this->fromDate = $fromDate; $this->toDate = $toDate; $this->email = $email; // Guardamos el correo } public function build() { return $this->subject('Reporte de Ventas') ->to($this->email) // Enviamos el correo a la dirección proporcionada ->view('emails.reporte-ventas'); } }