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
:
WithdrawalStatus.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\User; use App\Models\Withdrawal; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class WithdrawalStatus extends Mailable { use Queueable, SerializesModels; public $withdrawal, $subject, $user; public $foramin; /** * Create a new message instance. * * @return void */ public function __construct(Withdrawal $withdrawal, User $user, $subject, $foramin = false) { $this->withdrawal = $withdrawal; $this->user = $user; $this->foramin = $foramin; $this->subject = $subject; } /** * Build the message. * * @return $this */ public function build() { return $this->markdown('emails.withdrawal-status')->subject($this->subject); } }