Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.187.75
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
stagingcrm.oxopackaging.com /
app /
Stubs /
[ HOME SHELL ]
Name
Size
Permission
Action
controller
[ DIR ]
drwxr-xr-x
service
[ DIR ]
drwxr-xr-x
transformer
[ DIR ]
drwxr-xr-x
model.stub
1.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : model.stub
<?php $NAMESPACE$ use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; use Prettus\Repository\Contracts\Transformable; use Prettus\Repository\Traits\TransformableTrait; //use Auth; /** * Class $CLASS$. * * @package $NAMESPACE$ */ class $CLASS$ extends Model implements Transformable { use TransformableTrait; //use SoftDeletes; //public $table = '$TABLE$'; protected $perPage = 10; protected $dates = ['deleted_at']; //If created_by & updated_by columns exists protected static $created_update_by = false; //If deleted_by columns exists protected static $deleted_by = false; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = $FILLABLE$; /** * The attributes that should be casted to native types. * * @var array */ //protected $casts = $CAST$; /** * Validation rules * * @var array */ //public static $rules = $RULES$ protected static function boot() { parent::boot(); if(self::$created_update_by){ static::creating(function ($model) { $model->created_by = Auth::user()->id; $model->updated_by = Auth::user()->id; }); static::updating(function ($model) { $model->updated_by = Auth::user()->id; }); } if(self::$deleted_by){ static::deleting(function ($model) { $model->deleted_by = Auth::user()->id; }); } } }
Close