fix other mailables

This commit is contained in:
Godfrey M 2024-12-11 16:25:04 -08:00
parent 400833f834
commit 331fbb66bd
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ class CheckoutAccessoryMail extends Mailable
/** /**
* Create a new message instance. * Create a new message instance.
*/ */
public function __construct(Accessory $accessory, $checkedOutTo, User $checkedOutBy,$note, $acceptance) public function __construct(Accessory $accessory, $checkedOutTo, User $checkedOutBy, $acceptance, $note)
{ {
$this->item = $accessory; $this->item = $accessory;
$this->admin = $checkedOutBy; $this->admin = $checkedOutBy;

View file

@ -23,7 +23,7 @@ class CheckoutAssetMail extends Mailable
/** /**
* Create a new message instance. * Create a new message instance.
*/ */
public function __construct(Asset $asset, $checkedOutTo, User $checkedOutBy, $note, $acceptance) public function __construct(Asset $asset, $checkedOutTo, User $checkedOutBy, $acceptance, $note)
{ {
$this->item = $asset; $this->item = $asset;
$this->admin = $checkedOutBy; $this->admin = $checkedOutBy;