@extends ('backend.layouts.app')
@section('title')
{{ __('Log Viewer Dashboard') }}
@endsection
@section('breadcrumbs')
@lang('Log Viewer')
@endsection
@section('content')
@lang('Log Dashboard')
@lang('Daily Log')
@foreach ($percents as $level => $item)
{!! log_styler()->icon($level) !!}
{{ $item['name'] }}
{{ $item['count'] }} @lang('entries') - {!! $item['percent'] !!} %
@endforeach
@endsection
@push('after-styles')
@include('log-viewer::laravel-starter.style')
@endpush
@push('after-scripts')
@endpush