@section('site_title', formatTitle([__('Reports'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Reports')], ]])

{{ __('Reports') }}

{{ __('Reports') }}
@include('shared.filter-tags')
@include('shared.message') @if(count($reports) == 0) {{ __('No data') }}. @else
{{ __('URL') }}
{{ __('User') }}
@foreach($reports as $report)
@include('reports.partials.menu')
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $reports->firstItem(), 'to' => $reports->lastItem(), 'total' => $reports->total()]) }}
{{ $reports->onEachSide(1)->links() }}
@endif