One Hat Cyber Team
Your IP :
3.143.203.21
Server IP :
192.145.235.60
Server :
Linux ngx365.inmotionhosting.com 5.14.0-427.33.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 30 09:45:56 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
centos12
/
public_html
/
centosuit
/
app
/
Models
/
View File Name :
Skill.php
<?php namespace App\Models; use App\Traits\HasCompany; /** * App\Models\Skill * * @property int $id * @property string $name * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @property-read mixed $icon * @method static \Illuminate\Database\Eloquent\Builder|Skill newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Skill newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Skill query() * @method static \Illuminate\Database\Eloquent\Builder|Skill whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Skill whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|Skill whereName($value) * @method static \Illuminate\Database\Eloquent\Builder|Skill whereUpdatedAt($value) * @property int|null $company_id * @property-read \App\Models\Company|null $company * @method static \Illuminate\Database\Eloquent\Builder|Skill whereCompanyId($value) * @mixin \Eloquent */ class Skill extends BaseModel { use HasCompany; protected $table = 'skills'; protected $fillable = ['name']; }