Skip to content

Commit fa1df28

Browse files
committed
Update readme and add referrer tracking back in
1 parent b10cc8c commit fa1df28

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ MixPanel is loaded into the IoC as a singleton. This means you don't have to man
5858
described in the MixPanel docs. This is already done for you in the ServiceProvider.
5959

6060
Common user events are automatically recorded:
61+
- Page View
6162
- User Registration
6263
- User Deletion
6364
- User Login
@@ -174,6 +175,11 @@ the first name. Otherwise it will look for `first_name` and `last_name` fields i
174175
- Url: <page URL>
175176
- Route: <route name>
176177
- Referrer: <referring URL>
178+
- Referring Domain: <referring domain>
179+
- IP (for geolocation)
180+
- Browser
181+
- Operating System
182+
- Hardware
177183
```
178184

179185
## Stripe Integration

src/LaravelMixpanel.php

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public function track($event, $properties = [])
4747
'Operating System' => $osVersion,
4848
'Hardware' => $hardware,
4949
'$browser' => $browserInfo->getName() . ' ' . $browserInfo->getVersion(),
50+
'Referrer' => $this->request->header('referer'),
5051
'$referring_domain' => ($this->request->header('referer')
5152
? parse_url($this->request->header('referer'))['host']
5253
: null),

0 commit comments

Comments
 (0)