⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.60
Server IP:
68.65.123.197
Server:
Linux premium49.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
smarbgfw
/
public_html
/
core
/
app
/
Mail
/
View File Name :
OrderPackage.php
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; use Illuminate\Contracts\Queue\ShouldQueue; class OrderPackage extends Mailable { use Queueable, SerializesModels; public $sender; public $subject; public $fields; public $package; public $fileName; /** * Create a new message instance. * * @return void */ public function __construct($from, $subject, $fields, $package, $fileName) { $this->sender = $from; $this->subject = $subject; $this->fields = $fields; $this->package = $package; $this->fileName = $fileName; } /** * Build the message. * * @return $this */ public function build() { return $this->from($this->sender) ->subject($this->subject) ->view('mail.package') ->attach('assets/front/invoices/' . $this->fileName); } }