Only you can see your Activity log.
{{-- Now you can review and see everything- {{ request()->date }}. when you first started using
"Power Cozmo" --}}
Records are showing from {{ request()->date }}.
@php
$checkClass = [];
@endphp
@if (isset($activity) and !empty($activity) and sizeof($activity) > 0)
@foreach ($activity as $actval)
{{ date('M d, Y', strtotime($actval->date)) }} @if ($actval->date == date('Y-m-d'))
Today
@endif
@if (!empty($actval->history))
@foreach ($actval->history as $hisval)
@php
$img = $hisval->icons->icon ?? 'default.svg';
$ch = false;
if (in_array($hisval->type, $checkClass)) {
$ch = true;
}
$checkClass[] = 'hide_' . $hisval->type;
@endphp
@endforeach
@endif
@endforeach
@else
@endif