@extends('layouts.app') @section('title', 'Settings | Analytics') @section('extrastyles') @endsection @section('content')

Analytics Settings

{!! Form::select('analytics_dropDown' , ["ua" => "Universal Analytics", "ga4" => "Google Analytics 4"] , SiteSettingFind('analytics_dropDown_data', 'ua') , ['class' => 'form-control analytics_dropDown mt-4']) !!}
@include('flash::message')
{!! Form::open(['novalidate' => 'novalidate','method' => 'post']) !!}

To get your Analytics set up, follow these few steps

{!! Form::text('_analytics_grand_access' , 'analytics@gsr-shared.iam.gserviceaccount.com' , ['class' => 'form-control','readonly' => true]) !!}

Please add this email to your user management

{!! Form::text('_analytics_viewer_id' , SiteSettingFind('analytics_dropDown_data') == 'ga4' ? SiteSettingFind('_analytics_property_id') : SiteSettingFind('_analytics_viewer_id', '') , ['class' => 'form-control','placeholder' => SiteSettingFind('analytics_dropDown_data') == 'ga4' ? 'Property ID' : 'View ID','required'=>'true']) !!}
{!! Form::close() !!}
@endsection @section('footer') @endsection