File manager - Edit - /var/www/payraty/accounting_main/app/Models/Mail/PaymentReminder.php
Back
<?php namespace App\Models\Mail; use App\Models\Utility; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class PaymentReminder extends Mailable { use Queueable, SerializesModels; public $payment; /** * Create a new message instance. * * @return void */ public function __construct($payment) { $this->payment = $payment; } /** * Build the message. * * @return $this */ public function build() { if(\Auth::user()->type == 'super admin') { return $this->view('email.payment_reminder', compact($this->payment))->subject('Ragarding to overdue payment reminder'); } else { return $this->from(Utility::getValByName('company_email'), Utility::getValByName('company_email_from_name'))->view('email.payment_reminder', compact($this->payment))->subject('Ragarding to overdue payment reminder'); } } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.71 |
proxy
|
phpinfo
|
Settings