'integer', 'created_by' => 'integer', 'updated_by' => 'integer', ]; /* Optional relationships */ public function student() { return $this->belongsTo(Student::class, 'student_id'); } public function creator() { return $this->belongsTo(User::class, 'created_by'); } public function updater() { return $this->belongsTo(User::class, 'updated_by'); } }