PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
analytics
/
resources
/
views
/
widgets
@if (count($referrers) > 0) <div class="scroller"> <table class="table table-striped"> <thead> <tr> <th>#</th> <th class="text-left">{{ trans('core/base::tables.url') }}</th> <th class="text-center">{{ trans('core/base::tables.views') }}</th> </tr> </thead> <tbody> @foreach ($referrers as $referrer) <tr> <td>{{ $loop->index + 1 }}</td> <td class="text-left">{{ Str::limit($referrer['url'], 80) }}</td> <td style="width: 160px" class="text-center">{{ $referrer['pageViews'] }} ({{ ucfirst(trans('plugins/analytics::analytics.views')) }})</td> </tr> @endforeach </tbody> </table> </div> @else @include('core/dashboard::partials.no-data') @endif
[-] referrer.blade.php
[edit]
[+]
..
[-] page.blade.php
[edit]
[-] general.blade.php
[edit]
[-] browser.blade.php
[edit]