Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
dailyprofit.return /
app /
Models /
Delete
Unzip
Name
Size
Permission
Date
Action
Admin.php
608
B
-rw-r--r--
2023-07-25 13:22
Blog.php
518
B
-rw-r--r--
2023-07-25 13:22
CustomCss.php
267
B
-rw-r--r--
2023-07-25 23:21
DepositMethod.php
757
B
-rw-r--r--
2023-07-25 23:21
EmailTemplate.php
218
B
-rw-r--r--
2023-07-16 12:56
Gateway.php
444
B
-rw-r--r--
2023-07-25 23:21
Invest.php
1.45
KB
-rw-r--r--
2023-07-25 23:21
Kyc.php
208
B
-rw-r--r--
2023-07-16 12:56
LandingContent.php
219
B
-rw-r--r--
2023-07-31 14:10
LandingPage.php
216
B
-rw-r--r--
2023-07-16 12:56
Language.php
213
B
-rw-r--r--
2023-07-16 12:56
LevelReferral.php
231
B
-rw-r--r--
2023-07-25 13:22
LogActivity.php
337
B
-rw-r--r--
2023-07-25 13:22
LoginActivities.php
1.01
KB
-rw-r--r--
2023-07-25 23:21
Message.php
461
B
-rw-r--r--
2023-07-25 13:22
Navigation.php
597
B
-rw-r--r--
2023-07-31 00:09
Notification.php
308
B
-rw-r--r--
2023-07-25 13:22
Page.php
209
B
-rw-r--r--
2023-07-19 23:53
PageSetting.php
216
B
-rw-r--r--
2023-07-16 12:56
Plugin.php
211
B
-rw-r--r--
2023-07-16 12:56
PushNotificationTemplate.php
242
B
-rw-r--r--
2023-07-25 13:22
Ranking.php
212
B
-rw-r--r--
2023-07-16 12:56
Referral.php
439
B
-rw-r--r--
2023-07-16 12:56
ReferralLink.php
1.3
KB
-rw-r--r--
2023-07-25 23:21
ReferralProgram.php
250
B
-rw-r--r--
2023-07-16 12:56
ReferralRelationship.php
251
B
-rw-r--r--
2023-07-16 12:56
ReferralTarget.php
219
B
-rw-r--r--
2023-07-16 12:56
Schedule.php
213
B
-rw-r--r--
2023-07-16 12:56
ScheduledTask.php
195
B
-rw-r--r--
2023-07-25 23:21
Schema.php
928
B
-rw-r--r--
2023-07-31 01:08
SetTune.php
189
B
-rw-r--r--
2023-07-25 13:22
Setting.php
4.79
KB
-rw-r--r--
2023-07-25 23:21
SmsTemplate.php
334
B
-rw-r--r--
2023-07-25 13:22
Social.php
211
B
-rw-r--r--
2023-07-16 12:56
Subscription.php
385
B
-rw-r--r--
2023-07-16 12:56
Theme.php
427
B
-rw-r--r--
2023-07-25 13:22
Ticket.php
795
B
-rw-r--r--
2023-07-25 13:22
Transaction.php
3.9
KB
-rw-r--r--
2023-07-31 16:13
User.php
6.89
KB
-rw-r--r--
2023-07-31 00:09
WithdrawAccount.php
420
B
-rw-r--r--
2023-07-16 12:56
WithdrawMethod.php
394
B
-rw-r--r--
2023-07-25 13:22
WithdrawalSchedule.php
275
B
-rw-r--r--
2023-07-25 13:22
Save
Rename
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Schema extends Model { use HasFactory; protected $guarded = ['id']; protected $appends = [ 'total_revenue' ]; public function schedule() { return $this->hasOne(Schedule::class, 'id', 'return_period'); } public function getTotalRevenueAttribute() { $currencySymbol = setting('currency_symbol', 'global'); if ($this->type == 'fixed' && $this->return_type == 'period') { if ($this->interest_type == 'percentage') { return $currencySymbol.calPercentage($this->fixed_amount, $this->return_interest) * $this->number_of_period; } else { return $currencySymbol.$this->return_interest * $this->number_of_period; } } return __('Infinity'); } }