JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "UserForgetPassword.php"

Full Path: /home/u703019046/domains/nawabs.com.au/public_html/app/Mail/UserForgetPassword.php
File size: 686 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Mail;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;

class UserForgetPassword extends Mailable
{
    use Queueable, SerializesModels;

    public $template;
    public $mail_subject;
    public $user;
    public function __construct($template,$mail_subject,$user)
    {
        $this->template=$template;
        $this->mail_subject=$mail_subject;
        $this->user=$user;
    }

    public function build()
    {   $template = $this->template;
        return $this->subject($this->mail_subject)->view('frontend.auth.user_reset_mail', compact('template'));
    }
}