@extends('backend.layouts.app') @section('content')

Activity Log

{{-- --}}
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

No result found

@endif

Activities Navigation

@if (!empty($list) && count($list) > 0) @foreach ($list as $listval)
  • {{ $listval->name }} @if (count($listval->parent) > 0) @endif
  • @endforeach @endif
    @endsection @section('script') @php $checkClass = array_unique($checkClass); @endphp @endsection('script')