@extends('web.layouts.app', ['title' => 'CEO Dashboard']) @section('content')
Paid Revenue TRY{{ number_format($paymentsTotal / 100, 2) }}
Staff{{ $staff->count() }}
Audit Events{{ $audit->count() }}

Role Control

@foreach($users as $user) @endforeach
UserRolesGrant
{{ $user->username }} {{ $user->staffRoles->pluck('name')->join(', ') ?: '-' }}
@csrf
@csrf @method('delete')

Audit Log

@foreach($audit as $log)

{{ $log->action }} actor #{{ $log->actor_id }} {{ $log->created_at?->diffForHumans() }}

@endforeach
@endsection