Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 18.188.152.124
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
derozboy /
bervistogrup.online /
app /
Mail /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2025-04-30 09:30
ContactUs.php
642
B
-rw-r--r--
2021-08-31 19:45
GeneralMail.php
654
B
-rw-r--r--
2021-08-25 20:33
error_log
544
B
-rw-r--r--
2025-04-22 21:45
Save
Rename
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class GeneralMail extends Mailable { use Queueable, SerializesModels; /** * Create a new message instance. * * @return void */ protected $content; public function __construct($content) { $this->content = $content; } /** * Build the message. * * @return $this */ public function build() { return $this->subject($this->content->subject) ->markdown('email.general_template') ->with('content', $this->content); } }