Identifying users
When reporting an error to Flare, you can tell the Flare client, what information you have about the currently authenticated user. You can do this by providing a user
group that holds all the information you want to share.
$user = YourAuthenticatedUserInstance();
$flare->group('user', [
'email' => $user->email,
'name' => $user->name,
'additional_information' => $user->additional,
]);