Размер файла: 4.24Kb
@extends('layout')
@section('title', __('index.statistics'))
@section('breadcrumb')
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/"><i class="fas fa-home"></i></a></li>
<li class="breadcrumb-item active">{{ __('index.statistics') }}</li>
</ol>
</nav>
@stop
@section('content')
<div class="row mb-3">
<div class="col-md-6 col-12">
{{ __('counters.users_total') }}: <b>{{ ($online[2]) }}</b><br>
{{ __('counters.authorized_total') }}: <b>{{ $online[0] }}</b><br>
{{ __('counters.guest_total') }}: <b>{{ $online[1] }}</b><br><br>
{{ __('counters.hosts_total') }}: <b>{{ $count['allhosts'] }}</b><br>
{{ __('counters.hits_total') }}: <b>{{ $count['allhits'] }}</b><br>
</div>
<div class="col-md-6 col-12">
{{ __('counters.hosts_hour') }}: <b>{{ $count['hosts24'] }}</b><br>
{{ __('counters.hits_hour') }}: <b>{{ $count['hits24'] }}</b><br><br>
{{ __('counters.hosts_day') }}: <b>{{ $count['dayhosts'] }}</b><br>
{{ __('counters.hits_day') }}: <b>{{ $count['dayhits'] }}</b><br><br>
</div>
</div>
<h3>{{ __('counters.dynamics_day') }}</h3>
<span class="badge rounded-pill bg-primary">{{ __('counters.hosts') }}</span>
<span class="badge rounded-pill bg-warning">{{ __('counters.hits') }}</span>
<div class="ct-chart24 ct-perfect-fourth"></div>
<h3>{{ __('counters.dynamics_month') }}</h3>
<span class="badge rounded-pill bg-primary">{{ __('counters.hosts') }}</span>
<span class="badge rounded-pill bg-warning">{{ __('counters.hits') }}</span>
<div class="ct-chart31 ct-perfect-fourth"></div>
@stop
@push('styles')
<link rel="stylesheet" href="/assets/css/chartist.min.css">
<link rel="stylesheet" href="/assets/css/chartist-plugin-tooltip.css">
<style>
.ct-series-a .ct-line,
.ct-series-a .ct-point {
stroke: #007bff;
}
.ct-series-b .ct-line,
.ct-series-b .ct-point {
stroke: #ffc107;
}
.ct-labels .ct-horizontal {
white-space: nowrap;
}
</style>
@endpush
@push('scripts')
<script src="/assets/js/chartist.min.js"></script>
<script src="/assets/js/chartist-plugin-tooltip.min.js"></script>
<script>
new Chartist.Line('.ct-chart31', {
onlyInteger: true,
labels: @json($counts31['labels']),
series: [
@json($counts31['hits']),
@json($counts31['hosts'])
]
}, {
plugins: [
Chartist.plugins.tooltip()
],
reverseData: true,
fullWidth: true,
chartPadding: {
right: 35
},
axisY: {
onlyInteger: true,
offset: 35,
labelInterpolationFnc: function(value) {
return (value > 1000) ? (value / 1000) + 'k' : value;
}
},
axisX: {
labelInterpolationFnc: function (value, index) {
return index % 5 === 0 ? value : null;
}
}
}, [
['screen and (min-width: 640px)', {
axisX: {
labelInterpolationFnc: function(value, index) {
return index % 3 === 0 ? value : null;
}
}
}]
]);
new Chartist.Line('.ct-chart24', {
onlyInteger: true,
labels: @json($counts24['labels']),
series: [
@json($counts24['hits']),
@json($counts24['hosts'])
]
}, {
plugins: [
Chartist.plugins.tooltip()
],
reverseData: true,
fullWidth: true,
chartPadding: {
right: 35
},
axisY: {
onlyInteger: true,
offset: 35
},
axisX: {
labelInterpolationFnc: function (value, index) {
return index % 3 === 0 ? value : null;
}
}
});
</script>
@endpush