plant = $plant;
$this->itemCode = $itemCode;
$this->serialNumber = $serialNumber;
$this->supplier = $supplier;
$this->characteristics = $characteristics;
}
/**
* Get the message envelope.
*/
public function envelope(): Envelope
{
return new Envelope(
subject: 'Panel Box Not Ok Alert',
);
}
/**
* Get the message content definition.
*/
public function content(): Content
{
$greeting = 'Dear Sir';
return new Content(
view: 'mail.panel-box-not-ok-alert',
with: [
'company' => 'CRI Digital Manufacturing Solutions',
'greeting' => $greeting,
'wishes' => 'Thanks & Regards,
CRI Digital Manufacturing Solutions',
],
);
}
/**
* Get the attachments for the message.
*
* @return array
*/
public function attachments(): array
{
return [];
}
}