getHost(); $tenant = Tenant::where(['url' => $host, 'has_active_instance' => true])->first(); if (! $tenant) { throw new NotFoundHttpException('Tenant not found'); } app()->instance('tenant', $tenant); return $next($request); } }