*/ protected $fillable = [ 'username', 'discord_id', 'is_admin', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'is_admin' => 'boolean', ]; /** * The highlighted Discord ID. * * @return string */ public function getHighlightAttribute() { return "<@{$this->discord_id}>"; } }