123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- @extends('admin.layouts.app')
- @section('title', '错误日志')
- @section('content')
- <div class="wrapper wrapper-content animated fadeInRight">
- <div class="row">
- <label for="" class="col-1"></label>
- <div class="col-8" style="padding: 0">
- <h1><i class="fa fa-calendar" aria-hidden="true"></i> Laravel Log Viewer</h1>
- <div class="list-group div-scroll">
- @foreach($folders as $folder)
- <div class="list-group-item">
- <a href="?f={{ \Illuminate\Support\Facades\Crypt::encrypt($folder) }}">
- <span class="fa fa-folder"></span> {{$folder}}
- </a>
- @if ($current_folder == $folder)
- <div class="list-group folder">
- @foreach($folder_files as $file)
- <a href="?l={{ \Illuminate\Support\Facades\Crypt::encrypt($file) }}&f={{ \Illuminate\Support\Facades\Crypt::encrypt($folder) }}"
- class="list-group-item @if ($current_file == $file) llv-active @endif">
- {{$file}}
- </a>
- @endforeach
- </div>
- @endif
- </div>
- @endforeach
- </div>
- </div>
- <div class="col-2" style="padding: 0">
- @foreach($files as $file)
- <a href="?l={{ \Illuminate\Support\Facades\Crypt::encrypt($file) }}"
- class="list-group-item @if ($current_file == $file) llv-active @endif">
- {{$file}}
- </a>
- @endforeach
- </div>
- </div>
- <div class="row">
- <label for="" class="col-1"></label>
- <div class="col-10 table-container">
- @if ($logs === null)
- <div>
- Log file >50M, please download it.
- </div>
- @else
- <table id="table-log" class="table table-striped"
- data-ordering-index="{{ $standardFormat ? 2 : 0 }}">
- <thead>
- <tr>
- @if ($standardFormat)
- <th>Level</th>
- <th>Context</th>
- <th>Date</th>
- @else
- <th>Line number</th>
- @endif
- <th>Content</th>
- </tr>
- </thead>
- <tbody>
- @foreach($logs as $key => $log)
- <tr data-display="stack{{{$key}}}">
- @if ($standardFormat)
- <td class="nowrap text-{{{$log['level_class']}}}">
- <span class="fa fa-{{{$log['level_img']}}}" aria-hidden="true"></span> {{$log['level']}}
- </td>
- <td class="text">{{$log['context']}}</td>
- @endif
- <td class="date">{{{$log['date']}}}</td>
- <td class="text">
- @if ($log['stack'])
- <button type="button"
- class="float-right expand btn btn-outline-dark btn-sm mb-2 ml-2"
- data-display="stack{{{$key}}}">
- <span class="fa fa-search"></span>
- </button>
- @endif
- {{{$log['text']}}}
- @if (isset($log['in_file']))
- <br/>{{{$log['in_file']}}}
- @endif
- @if ($log['stack'])
- <div class="stack" id="stack{{{$key}}}"
- style="display: none; white-space: pre-wrap;">{{{ trim($log['stack']) }}}
- </div>
- @endif
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- @endif
- <div class="p-3">
- @if($current_file)
- <a href="?dl={{ \Illuminate\Support\Facades\Crypt::encrypt($current_file) }}{{ ($current_folder) ? '&f=' . \Illuminate\Support\Facades\Crypt::encrypt($current_folder) : '' }}">
- <span class="fa fa-download"></span> Download file
- </a>
- -
- <a id="clean-log"
- href="?clean={{ \Illuminate\Support\Facades\Crypt::encrypt($current_file) }}{{ ($current_folder) ? '&f=' . \Illuminate\Support\Facades\Crypt::encrypt($current_folder) : '' }}">
- <span class="fa fa-sync"></span> Clean file
- </a>
- -
- <a id="delete-log"
- href="?del={{ \Illuminate\Support\Facades\Crypt::encrypt($current_file) }}{{ ($current_folder) ? '&f=' . \Illuminate\Support\Facades\Crypt::encrypt($current_folder) : '' }}">
- <span class="fa fa-trash"></span> Delete file
- </a>
- @if(count($files) > 1)
- -
- <a id="delete-all-log"
- href="?delall=true{{ ($current_folder) ? '&f=' . \Illuminate\Support\Facades\Crypt::encrypt($current_folder) : '' }}">
- <span class="fa fa-trash-alt"></span> Delete all files
- </a>
- @endif
- @endif
- </div>
- </div>
- </div>
- </div>
- @endsection
- @section('js')
- <script type="text/javascript" src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
- <script type="text/javascript" src="https://cdn.datatables.net/1.10.16/js/dataTables.bootstrap4.min.js"></script>
- <script>
- $(document).ready(function () {
- $('.table-container tr').on('click', function () {
- $('#' + $(this).data('display')).toggle();
- });
- $('#table-log').DataTable({
- "order": [$('#table-log').data('orderingIndex'), 'desc'],
- "stateSave": true,
- "stateSaveCallback": function (settings, data) {
- window.localStorage.setItem("datatable", JSON.stringify(data));
- },
- "stateLoadCallback": function (settings) {
- var data = JSON.parse(window.localStorage.getItem("datatable"));
- if (data) data.start = 0;
- return data;
- }
- });
- $('#delete-log, #clean-log, #delete-all-log').click(function () {
- return confirm('Are you sure?');
- });
- });
- </script>
- @endsection
|