diff --git a/resources/views/livewire/exceptions.blade.php b/resources/views/livewire/exceptions.blade.php index 2247e859..2511831a 100644 --- a/resources/views/livewire/exceptions.blade.php +++ b/resources/views/livewire/exceptions.blade.php @@ -21,54 +21,52 @@ -
- @if ($exceptions->isEmpty()) - - @else - - - - - - - - - Type - Latest - Count + @if ($exceptions->isEmpty()) + + @else + + + + + + + + + Type + Latest + Count + + + + @foreach ($exceptions->take(100) as $exception) + + + + + {{ $exception->class }} + +

+ {{ $exception->location }} +

+
+ + {{ $exception->latest->ago(syntax: Carbon\CarbonInterface::DIFF_ABSOLUTE, short: true) }} + + + @if ($config['sample_rate'] < 1) + ~{{ number_format($exception->count * (1 / $config['sample_rate'])) }} + @else + {{ number_format($exception->count) }} + @endif + -
- - @foreach ($exceptions->take(100) as $exception) - - - - - {{ $exception->class }} - -

- {{ $exception->location }} -

-
- - {{ $exception->latest->ago(syntax: Carbon\CarbonInterface::DIFF_ABSOLUTE, short: true) }} - - - @if ($config['sample_rate'] < 1) - ~{{ number_format($exception->count * (1 / $config['sample_rate'])) }} - @else - {{ number_format($exception->count) }} - @endif - - - @endforeach - -
- @endif + @endforeach + + + @endif - @if ($exceptions->count() > 100) -
Limited to 100 entries
- @endif -
+ @if ($exceptions->count() > 100) +
Limited to 100 entries
+ @endif