@extends( ($theme =="white") ? 'layouts.white_theme': ( ($theme =="red") ? 'layouts.red_theme': (($theme =="green") ? 'layouts.green_theme': (($theme =="black") ? 'layouts.black_theme': ( ($theme =="blue") ?'layouts.blue_theme': 'layouts.yellow_theme' )))) ) @section('content')

{{ __('Error Logs') }}

@include('common.demo') @include('common.errors')
@if (!count($error_logs))

{{ __('No data found') }} !!

{{ __('Sorry we cant find any data, to get rid of this message, make at least 1 entry') }}.

@else @foreach ($error_logs as $error) @endforeach
{{ __('Section') }} {{ __('Title') }} {{ __('Error message') }} {{ __('Last action') }}
{{ $error->section }} {{ Str::limit($error->title, 30) }} {{ Str::limit($error->error_text, 30) }} {{$error->created_at->diffForHumans()}}

{{ $error_logs->appends($request->all())->links("pagination::bootstrap-4") }} @endif
@endsection