@extends('layout.with-main')
@section('title')
Audits log - {{ __('staff.staff-dashboard') }} - {{ config('other.title') }}
@endsection
@section('meta')
@endsection
@section('breadcrumbs')
{{ __('staff.staff-dashboard') }}
{{ __('staff.audit-log') }}
@endsection
@section('page', 'page__staff-audit--index')
@section('main')
{{ __('common.staff') }} {{ __('common.stats') }}
| {{ __('common.name') }} |
{{ __('stat.last30days') }} |
{{ __('stat.last60days') }} |
{{ __('stat.all-time') }} |
@foreach ($staffUsers as $staffUser)
|
|
{{ $staffUser->last_30_days }} |
{{ $staffUser->last_60_days }} |
{{ $staffUser->total_actions }} |
@endforeach
@livewire('audit-log-search')
@endsection