@extends('admin.admin_master') @section('admin')

Reports Dashboard

Overview and analytics for workflows, tasks, users, and more

Workflow Summary

View statistics on workflows created, completed, and in progress.

View Workflow Report
All Workflows
@forelse($workflows as $workflow) @empty @endforelse
Name Status Created By Created At
{{ $workflow->name }} {{ ucfirst($workflow->status) }} {{ $workflow->createdBy->first_name ?? '-' }} {{ $workflow->createdBy->last_name ?? '' }} {{ $workflow->created_at->format('Y-m-d H:i') }}
No workflows found
Task Status

See pending, completed, and overdue tasks by user or workflow.

View Task Report
User Activity

Track user logins, actions, and activity logs.

View User Report
Folder & File Stats

Analyze folder/file creation, modification, and access.

View Folder Report
All Folders
@forelse($folders as $folder) @empty @endforelse
Folder ID Name Path Parent ID Created By Created At
{{ $folder->id }} {{ $folder->name }} {{ $folder->path }} {{ $folder->parent_id ?? '-' }} {{ $folder->created_by ?? '-' }} {{ $folder->created_at->format('Y-m-d H:i') }}
No folders found
@endsection