One Hat Cyber Team
Your IP :
216.73.217.146
Server IP :
50.6.229.107
Server :
Linux server.hostburly.com 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.2.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home1
/
andjemzt
/
ggh_api
/
app
/
Models
/
View File Name :
KycDocument.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Concerns\HasUuids; use Illuminate\Database\Eloquent\Factories\HasFactory; class KycDocument extends Model { use HasFactory, HasUuids; /** * Table name (optional but explicit is safer in production) */ protected $table = 'kyc_documents'; /** * Primary key type */ public $incrementing = false; protected $keyType = 'string'; /** * Mass assignable fields */ protected $fillable = [ 'kyc_id', 'type', 'path', 'original_name', 'mime', 'size', ]; /** * Relationship: Document belongs to a KYC record */ public function kyc() { return $this->belongsTo(Kyc::class); } }