'integer', 'family_id' => 'integer', 'sent_by' => 'integer', // If these columns are JSON in DB, this will auto convert to arrays 'recipients' => 'array', 'cc' => 'array', 'bcc' => 'array', 'attachments' => 'array', 'metadata' => 'array', ]; /* Optional relationships */ public function student() { return $this->belongsTo(Student::class, 'student_id'); } public function sender() { return $this->belongsTo(User::class, 'sent_by'); } }