hasMany(Award::class); } /** * Get the user who created this award type. */ public function creator() { return $this->belongsTo(User::class, 'created_by'); } }