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.20
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 /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
.htaccess
127
B
-r--r--r--
Brand.php
1.93
KB
-rw-r--r--
Currency.php
1.75
KB
-rw-r--r--
Enquiry.php
2.34
KB
-rw-r--r--
Event.php
5.5
KB
-rw-r--r--
EventGoogleCalendar.php
1.8
KB
-rw-r--r--
EventSchedule.php
4.94
KB
-rw-r--r--
Faq.php
1.47
KB
-rw-r--r--
FrontCMSSetting.php
1.57
KB
-rw-r--r--
FrontTestimonial.php
2.85
KB
-rw-r--r--
GoogleCalendarIntegration.php
1.71
KB
-rw-r--r--
GoogleCalendarList.php
1.79
KB
-rw-r--r--
MainReason.php
1.99
KB
-rw-r--r--
PersonalExperience.php
1.3
KB
-rw-r--r--
PlanFeature.php
1.43
KB
-rw-r--r--
Schedule.php
2.38
KB
-rw-r--r--
Service.php
2.93
KB
-rw-r--r--
Setting.php
1.27
KB
-rw-r--r--
Subscribe.php
1.49
KB
-rw-r--r--
Subscription.php
3.13
KB
-rw-r--r--
SubscriptionPlan.php
3.42
KB
-rw-r--r--
Transaction.php
2.02
KB
-rw-r--r--
User.php
16.75
KB
-rw-r--r--
UserGoogleEventSchedule.php
2
KB
-rw-r--r--
UserSchedule.php
3.96
KB
-rw-r--r--
UserSetting.php
1.41
KB
-rw-r--r--
UserTransaction.php
4.1
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Currency.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Carbon; /** * App\Models\Currency * * @property int $id * @property string $currency_name * @property string $currency_icon * @property string $currency_code * @property int $is_default * @property Carbon|null $created_at * @property Carbon|null $updated_at * * @method static Builder|Currency newModelQuery() * @method static Builder|Currency newQuery() * @method static Builder|Currency query() * @method static Builder|Currency whereCreatedAt($value) * @method static Builder|Currency whereCurrencyCode($value) * @method static Builder|Currency whereCurrencyIcon($value) * @method static Builder|Currency whereCurrencyName($value) * @method static Builder|Currency whereId($value) * @method static Builder|Currency whereIsDefault($value) * @method static Builder|Currency whereUpdatedAt($value) * * @mixin Model */ class Currency extends Model { use HasFactory; /** * @var string */ protected $table = 'currencies'; /** * @var string[] */ protected $fillable = [ 'currency_name', 'currency_icon', 'currency_code', 'is_default', ]; /** * Validation rules * * @var array */ public static $rules = [ 'currency_name' => 'required|unique:currencies', 'currency_icon' => 'required', 'currency_code' => 'required|min:3|max:3', ]; /** * @var string[] */ protected $casts = [ 'currency_name' => 'string', 'currency_icon' => 'string', 'currency_code' => 'string', 'is_default' => 'boolean', ]; }
Close