JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "OrderSuccessfully.php"
Full Path: /home/u703019046/domains/nawabs.com.au/public_html/app/Mail/OrderSuccessfully.php
File size: 655 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 OrderSuccessfully extends Mailable
{
use Queueable, SerializesModels;
public $template;
public $subject;
public function __construct($template,$subject)
{
$this->template=$template;
$this->subject=$subject;
}
public function build()
{
$template = $this->template;
$subject = $this->subject;
return $this->subject($this->subject)->view('frontend.user.order_email_template', compact('template'));
}
}