관리-도구
편집 파일: WithdrawApprovalMail.php
<?php namespace Modules\PaymentWithdraw\app\Emails; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class WithdrawApprovalMail extends Mailable { use Queueable, SerializesModels; public $mail_subject; public $mail_template; public function __construct($mail_subject, $mail_template) { $this->mail_subject = $mail_subject; $this->mail_template = $mail_template; } /** * Build the message. */ public function build(): self { return $this->subject($this->mail_subject)->view('paymentwithdraw::admin.withdraw_approval_mail', ['mail_template' => $this->mail_template]); } }