@extends('frontend.includes.master')
@section('title', @$data['title'])
@section('content')
{{ $data['title'] }}
{{-- Vistor Data --}}
{{ _trans('common.Visitors') }}
| {{ _trans('common.#') }} |
{{ _trans('common.Visitors') }} |
{{ _trans('common.Sessions') }} |
@php
$no = 0;
@endphp
@foreach ($data['visitors'] as $visitors)
| {{ ++$no }} |
{{ $visitors['type'] }} |
{{ $visitors['sessions'] }} |
@endforeach
{{-- Most Vistied Pages Rank --}}
{{ _trans('common.Most Vistied Pages') }}
| {{ _trans('common.#') }} |
{{ _trans('common.URL') }} |
{{ _trans('common.Page Title') }} |
{{ _trans('common.Page Views') }} |
@php
$no = 0;
@endphp
@foreach ($data['most_visited_pages'] as $mostVisited)
| {{ ++$no }} |
{{ $mostVisited['url'] }} |
{{ $mostVisited['pageTitle'] }} |
{{ $mostVisited['pageViews'] }} |
@endforeach
{{-- Page views --}}
{{ _trans('common.Page Views and Visitors') }}
| {{ _trans('common.#') }} |
{{ _trans('common.Date') }} |
{{ _trans('common.Visitors') }} |
{{ _trans('common.Page Title') }} |
{{ _trans('common.Page Views') }} |
@php
$no = 0;
@endphp
@foreach ($data['pageviews'] as $pageviews)
| {{ ++$no }} |
{{ $pageviews['date'] }} |
{{ $pageviews['visitors'] }} |
{{ $pageviews['pageTitle'] }} |
{{ $pageviews['pageViews'] }} |
@endforeach
{{-- Refferers --}}
{{ _trans('common.Refferers') }}
| {{ _trans('common.#') }} |
{{ _trans('common.URL') }} |
{{ _trans('common.Page Views') }} |
@php
$no = 0;
@endphp
@foreach ($data['refferers'] as $refferers)
| {{ ++$no }} |
{{ $refferers['url'] }} |
{{ $refferers['pageViews'] }} |
@endforeach
{{-- Country wise Data --}}
{{ _trans('common.Country') }}
| {{ _trans('common.#') }} |
{{ _trans('common.Country') }} |
{{ _trans('common.Sessions') }} |
@php
$no = 0;
@endphp
@foreach ($data['country'] as $country)
| {{ ++$no }} |
{{ $country['country'] }} |
{{ $country['sessions'] }} |
@endforeach
{{-- Browser wise Data --}}
{{ _trans('common.Browsers') }}
| {{ _trans('common.#') }} |
{{ _trans('common.Browsers') }} |
{{ _trans('common.Sessions') }} |
@php
$no = 0;
@endphp
@foreach ($data['topbrowsers'] as $topbrowsers)
| {{ ++$no }} |
{{ $topbrowsers['browser'] }} |
{{ $topbrowsers['sessions'] }} |
@endforeach
@endsection
@section('scripts')
@endsection