Added remark column in panel box alert mail
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 12s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 14s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 17s
Laravel Pint / pint (pull_request) Successful in 35m7s
Laravel Larastan / larastan (pull_request) Failing after 49m43s
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 12s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 14s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 17s
Laravel Pint / pint (pull_request) Successful in 35m7s
Laravel Larastan / larastan (pull_request) Failing after 49m43s
This commit is contained in:
@@ -20,13 +20,16 @@ class PanelBoxNotOkAlert extends Mailable
|
||||
|
||||
public $supplier;
|
||||
|
||||
public $remark;
|
||||
|
||||
/**
|
||||
* Create a new message instance.
|
||||
*/
|
||||
public function __construct($plant,$itemCode,$serialNumber,$supplier, $characteristics)
|
||||
public function __construct($plant,$itemCode,$remark, $serialNumber,$supplier, $characteristics)
|
||||
{
|
||||
$this->plant = $plant;
|
||||
$this->itemCode = $itemCode;
|
||||
$this->remark = $remark;
|
||||
$this->serialNumber = $serialNumber;
|
||||
$this->supplier = $supplier;
|
||||
$this->characteristics = $characteristics;
|
||||
|
||||
@@ -134,6 +134,20 @@
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td
|
||||
style="padding:12px 15px; font-size:14px;
|
||||
color:#666666;">
|
||||
Remark
|
||||
</td>
|
||||
|
||||
<td
|
||||
style="padding:12px 15px; font-size:14px;
|
||||
font-weight:bold; color:#222222;">
|
||||
{{ $remark }}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user