@extends('layouts.app') @section('title', __('Logs')) @section('sidebar') @include('partials/sidebar_menu_toggle') @php $names = App\ActivityLog::select('log_name')->distinct()->pluck('log_name')->toArray(); array_unshift($names, App\ActivityLog::NAME_OUT_EMAILS); array_push($names, App\ActivityLog::NAME_APP_LOGS); $current_name = 'app'; @endphp @endsection @section('content')
{{ __('Log Records') }}
{{ App\User::dateFormat(new Illuminate\Support\Carbon()) }}
@if ($logs === null)
Log file >50M, please download it.
@else @if ($standardFormat) @else @endif @foreach($logs as $key => $log) @if ($standardFormat) @endif @endforeach
Level Context DateLine numberContent
  {{$log['level']}} {{$log['context']}}{{{$log['date']}}} @if ($log['stack']) @endif {{{$log['text']}}} @if (isset($log['in_file']))
{{{$log['in_file']}}} @endif @if ($log['stack']) @endif
@endif
@if($current_file) Download file {{--- Clean file --}} - Delete file @if(count($files) > 1) - Delete all files @endif @endif
@endsection @section('stylesheets') @endsection @section('javascript') @parent initLogsTable(); @endsection @section('javascripts') @endsection