One Hat Cyber Team
Your IP :
3.135.198.159
Server IP :
web.dafriappsdev.com
Server :
Linux server3.shared.spaceship.host 4.18.0-372.9.1.1.lve.el8.x86_64 #1 SMP Tue May 24 07:49:22 EDT 2022 x86_64
Server Software :
LiteSpeed
PHP Version :
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
rlcugxuggt
/
api.dafriappsdev.com
/
app
/
Models
/
View File Name :
Device.php
<?php namespace App\Models; use App\Autoload\HasUid; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Str; class Device extends Model { use HasFactory, HasUid; public $timestamps = false; /** * The attributes that are mass assignable. * * @var array<int, string> */ protected $fillable = [ 'uuid', ]; protected static function boot() { parent::boot(); static::creating(function($model){ $model->uuid = Str::uuid()->toString(); }); } public function user() { return $this->belongsTo('App\Models\User'); } public function smstransaction() { return $this->hasMany('App\Models\Smstransaction'); } }