Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
app
/
Mail
:
NewRoi.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php // this Code is Cracked by dharunMods-YouTube-Channel namespace App\Mail; use App\Models\Tp_Transaction; use App\Models\User; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; use Illuminate\Contracts\Queue\ShouldQueue; class NewRoi extends Mailable { use Queueable, SerializesModels; /** * Create a new message instance. * * @var Demo */ public $plan, $amount, $plandate, $user, $subject; public function __construct(User $user, $plan, $amount, $plandate, $subject) { $this->plan = $plan; $this->user = $user; $this->subject = $subject; $this->amount = $amount; $this->plandate = $plandate; } /** * Build the message. * * @return $this */ public function build() { return $this->markdown('emails.newroi')->subject($this->subject); } }