@extends('frontend.includes.master') @section('title', @$data['title']) @section('content')

{{ $data['title'] }}

{{-- Vistor Data --}}

{{ _trans('common.Visitors') }}

@php $no = 0; @endphp @foreach ($data['visitors'] as $visitors) @endforeach
{{ _trans('common.#') }} {{ _trans('common.Visitors') }} {{ _trans('common.Sessions') }}
{{ ++$no }} {{ $visitors['type'] }} {{ $visitors['sessions'] }}
{{-- Most Vistied Pages Rank --}}

{{ _trans('common.Most Vistied Pages') }}

@php $no = 0; @endphp @foreach ($data['most_visited_pages'] as $mostVisited) @endforeach
{{ _trans('common.#') }} {{ _trans('common.URL') }} {{ _trans('common.Page Title') }} {{ _trans('common.Page Views') }}
{{ ++$no }} {{ $mostVisited['url'] }} {{ $mostVisited['pageTitle'] }} {{ $mostVisited['pageViews'] }}
{{-- Page views --}}

{{ _trans('common.Page Views and Visitors') }}

@php $no = 0; @endphp @foreach ($data['pageviews'] as $pageviews) @endforeach
{{ _trans('common.#') }} {{ _trans('common.Date') }} {{ _trans('common.Visitors') }} {{ _trans('common.Page Title') }} {{ _trans('common.Page Views') }}
{{ ++$no }} {{ $pageviews['date'] }} {{ $pageviews['visitors'] }} {{ $pageviews['pageTitle'] }} {{ $pageviews['pageViews'] }}
{{-- Refferers --}}

{{ _trans('common.Refferers') }}

@php $no = 0; @endphp @foreach ($data['refferers'] as $refferers) @endforeach
{{ _trans('common.#') }} {{ _trans('common.URL') }} {{ _trans('common.Page Views') }}
{{ ++$no }} {{ $refferers['url'] }} {{ $refferers['pageViews'] }}
{{-- Country wise Data --}}

{{ _trans('common.Country') }}

@php $no = 0; @endphp @foreach ($data['country'] as $country) @endforeach
{{ _trans('common.#') }} {{ _trans('common.Country') }} {{ _trans('common.Sessions') }}
{{ ++$no }} {{ $country['country'] }} {{ $country['sessions'] }}
{{-- Browser wise Data --}}

{{ _trans('common.Browsers') }}

@php $no = 0; @endphp @foreach ($data['topbrowsers'] as $topbrowsers) @endforeach
{{ _trans('common.#') }} {{ _trans('common.Browsers') }} {{ _trans('common.Sessions') }}
{{ ++$no }} {{ $topbrowsers['browser'] }} {{ $topbrowsers['sessions'] }}
@endsection @section('scripts') @endsection