⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
cleanexg
/
public_html
/
core
/
app
/
Edit File: Event.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Event extends Model { protected $table ='events'; protected $fillable = [ 'title', 'slug', 'content', 'date', 'time', 'cost', 'available_tickets', 'organizer', 'organizer_email', 'organizer_phone', 'organizer_website', 'venue', 'venue_location', 'venue_phone', 'meta_tags', 'meta_description', 'image', 'video', 'lang_id', 'cat_id', ]; public function eventCategories(){ return $this->belongsTo(EventCategory::class,'cat_id','id'); } }
Simpan