@extends('admin::layout.default')
@section('content')
@include('admin::pages.log.viewer.heading')
@if (!empty($msg_success)) {
@endif
{{ trans('admin.LOG_VIEWER') }}
| {{ trans('admin.OPTIONS') }} |
{{ trans('admin.INSTANCE') }} |
{{ trans('admin.CHANNEL') }} |
{{ trans('admin.LEVEL') }} |
{{ trans('admin.LEVEL_NAME') }} |
{{ trans('admin.IP') }} |
{{ trans('admin.DATE') }} |
@if (isset($table))
@foreach($table as $row)
|
{{$row->instance}} |
{{$row->channel}} |
{{$row->level}} |
{{$row->level_name}} |
{{long2ip($row->remote_addr)}} |
{{$row->created_at}} |
@endforeach
@endif
{{$table->links()}}
@endsection