Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.219.115.102
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
app /
Models /
Delete
Unzip
Name
Size
Permission
Date
Action
Country.php
1.52
KB
-rw-r--r--
2021-03-18 11:35
Impacts.php
1.58
KB
-rw-r--r--
2021-03-29 14:13
Positions.php
1.6
KB
-rw-r--r--
2021-03-18 11:35
Products.php
1.58
KB
-rw-r--r--
2021-03-18 11:35
Signings.php
1.76
KB
-rw-r--r--
2022-08-25 20:53
apiREST.php
58.04
KB
-rw-r--r--
2021-03-02 12:40
Save
Rename
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; use DB; class Products extends Model { use SoftDeletes; /* |-------------------------------------------------------------------------- | GLOBAL VARIABLES |-------------------------------------------------------------------------- */ protected $table = 'products'; protected $primaryKey = 'id'; // public $timestamps = false; protected $guarded = ['id']; protected $fillable = ['name','long_name','passport_name','active']; // protected $hidden = []; protected $dates = ['created_at','updated_at']; /* |-------------------------------------------------------------------------- | FUNCTIONS |-------------------------------------------------------------------------- */ /* |-------------------------------------------------------------------------- | RELATIONS |-------------------------------------------------------------------------- */ /* |-------------------------------------------------------------------------- | SCOPES |-------------------------------------------------------------------------- */ /* |-------------------------------------------------------------------------- | ACCESORS |-------------------------------------------------------------------------- */ /* |-------------------------------------------------------------------------- | MUTATORS |-------------------------------------------------------------------------- */ }