@extends('log-viewer::_template.master') @section('page-header')

Log Viewer By ARCANEDEV

@endsection @section('content')
@if (! count($percents))
There are no statistics to show.
@else
@foreach($percents as $level => $item)
{!! log_styler()->icon($level) !!}
{{ $item['name'] }} {{ $item['count'] }} entries - {!! $item['percent'] !!} %
@endforeach
@endif
@endsection @section('after-scripts-end') @endsection