@extends('pages.settings.ajaxwrapper')
@section('settings-page')
@if (@count($logs ?? []) > 0)
@foreach($logs as $key => $log)
@endforeach
@lang('lang.info')
@lang('lang.you_can_delete_these_files')
@endif
@if (@count($logs ?? []) == 0)
@include('notifications.no-results-found')
@endif
@if(config('system.settings_type') == 'standalone')
{{ cleanLang(__('lang.help_documentation')) }}
@endif
@endsection