diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/Http/Middleware/PageView.php | 28 | ||||
-rw-r--r-- | app/Providers/AppServiceProvider.php | 9 |
2 files changed, 1 insertions, 36 deletions
diff --git a/app/Http/Middleware/PageView.php b/app/Http/Middleware/PageView.php deleted file mode 100644 index dda0662..0000000 --- a/app/Http/Middleware/PageView.php +++ /dev/null @@ -1,28 +0,0 @@ -<?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); - } -} diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 3aa155c..2209133 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -17,12 +17,5 @@ class AppServiceProvider extends ServiceProvider { /** * Bootstrap any application services. */ - public function boot(): void { - PostHog::init( - Config::get('services.posthog.key'), - [ - 'host' => 'https://'.Config::get('services.posthog.host') - ] - ); - } + public function boot(): void {} } |