Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rabol committed Mar 11, 2022
1 parent 6579b53 commit a438288
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions resources/views/log-viewer-view.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,13 @@
<thead>
<tr class="bg-gray-50">
<td class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</td>
<td class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Environment
</td>
<td class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Level
</td>
<td class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Context
</td>
<td></td>
<td class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Environment</td>
<td class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Level</td>
<td class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Context</td>
<td class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</td>
</tr>
</thead>


<tbody class="bg-white divide-y divide-gray-200">
@if($logEntries)
@foreach ($logEntries as $logEntry)
Expand Down Expand Up @@ -52,10 +47,8 @@ class="inline-flex items-center px-3 py-0.5 rounded-full text-sm font-medium bg-
</span>
@endif
</td>
{{--<td>{{$logEntry->file_path}}</td>--}}
<td class="px-2 py-3 whitespace-nowrap truncate max-w-sm">
{{-- \Illuminate\Support\Str::limit($logEntry->context, 40, ' (...)') --}}
<span class="truncate">$logEntry->context</span>
{{$logEntry->context}}
</td>
<td class="px-2 py-3 whitespace-nowrap">
<a href="{{ Rabol\FilamentLogviewer\Pages\LogViewerViewDetailsPage::getUrl(['recordId' => $logEntry->id,'fileName'=> $filename])}}"
Expand Down

0 comments on commit a438288

Please sign in to comment.