🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home2
/
birthday
/
event.krishivgroups.in
/
app
/
Models
✏️
Editing: EventRegistration.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class EventRegistration extends Model { use HasFactory; protected $fillable = [ 'event_id', 'first_name', 'last_name', 'institution_name', 'email', 'mobile_no', 'uploaded_photo_path', 'final_image_path', ]; public function event() { return $this->belongsTo(Event::class); } }
💾 Save Changes
❌ Cancel