Add pageview logging via PostHog
This commit is contained in:
parent
3824f01f9b
commit
0f4da7e3df
7 changed files with 114 additions and 14 deletions
28
app/Http/Middleware/PageView.php
Normal file
28
app/Http/Middleware/PageView.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Http\Request;
|
||||
use PostHog\PostHog;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
class PageView
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Closure(\Illuminate\Http\Request): (\Symfony\Component\HttpFoundation\Response) $next
|
||||
*/
|
||||
public function handle(Request $request, Closure $next): Response
|
||||
{
|
||||
PostHog::capture([
|
||||
'distinctId' => request()->ip(),
|
||||
'event' => '$pageview',
|
||||
'properties' => array(
|
||||
'$current_url' => url()->current(),
|
||||
),
|
||||
]);
|
||||
return $next($request);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue