One Hat Cyber Team
Your IP :
10.30.1.1
Server IP :
103.148.201.5
Server :
Linux web-olt 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
Server Software :
Apache/2.4.52 (Ubuntu)
PHP Version :
8.1.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
Compro-ISP
/
app
/
Models
/
View File Name :
Form.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Form extends Model { use HasFactory; protected $table = 'forms'; // protected $fillable = [ // 'name', // 'birthday', // 'email', // 'phone', // 'address', // 'rt', // 'rw', // 'province', // 'city', // 'district', // 'village', // 'postal_code', // 'installation_address', // 'installation_province', // 'installation_city', // 'installation_district', // 'installation_village', // 'installation_postal_code', // 'installation_rt', // 'installation_rw', // 'lat', // 'lng', // 'images', // Untuk menyimpan path file foto rumah // 'plan', // 'status' // ]; protected $guarded = []; }