@php
$dashboardFeatures = [
[
'title' => 'Conversational AI',
'points' => [
'Accepts user queries via voice or text',
'Returns instant AI-generated responses tailored to regional agriculture',
'Continuously improves with adaptive learning models on AWS',
],
],
[
'title' => 'π§± Technology Stack',
'points' => [
'Frontend: Flutter (Dart)',
'Backend: .NET Core/.NET 6',
'Database: Microsoft SQL Server',
'Notification: Firebase Cloud Messaging (FCM)',
'Authentication: Token-based login (JWT/OAuth2)',
],
],
[
'title' => 'π Authentication & Role Management',
'points' => [
'Dean Dashboard',
'HR Dashboard',
'Employee Home',
],
],
[
'title' => 'π€ User Roles - Dean',
'points' => [
'Master authority in the app',
'Assign tasks, review submissions, rate work',
'Reassign tasks',
'View all employees\' attendance and stats',
'Send broadcast messages',
],
],
[
'title' => 'π€ User Roles - HR',
'points' => [
'Assign tasks to employees',
'View progress and status',
'Send broadcast notifications',
'Escalate or report issues to Dean',
],
],
[
'title' => 'π€ User Roles - Employee',
'points' => [
'Receives tasks via push notifications',
'Changes task status (In Progress, To Review)',
'Submits documentation for review',
'Gets rated and sees completed tasks',
'Marks daily attendance',
'Sends daily work stats',
'Can message Dean/HR for support',
],
],
[
'title' => 'π Task Management Workflow',
'points' => [
'HR/Dean assigns task β Employee gets notification',
'Employee updates status (In Progress / To Review)',
'Dean reviews task β rates performance',
'Task moves to Completed list',
'Task Reassignment requires both partiesβ consent',
],
],
[
'title' => 'β± Types of Tasks',
'points' => [
'Daily',
'Weekly',
'Monthly',
],
],
[
'title' => 'π Notifications',
'points' => [
'Task assignment',
'Task review request',
'Broadcast messages',
'Task reassignment',
],
],
[
'title' => 'π Task Statuses',
'points' => [
'In Progress: Employee is currently working on the task',
'To Review: Task submitted for review with documentation',
'Completed: Task reviewed and rated, archived in history',
],
],
[
'title' => 'π
Rating System',
'points' => [
'Rating is done by Dean based on:',
'β’ Timeliness',
'β’ Quality of documentation',
'β’ Task adherence',
'Helps in performance analysis and feedback',
],
],
[
'title' => 'π Daily Updates & Attendance',
'points' => [
'Employees mark attendance each day in the app',
'Submit daily stats or summaries',
'Attendance and stats visible to Dean/HR in reports',
],
],
[
'title' => 'π£ Broadcast Messages',
'points' => [
'Dean or HR can send:',
'β’ Text announcements',
'β’ Updates with images',
'Appear as push notifications and in broadcast section',
],
],
[
'title' => 'π¬ Direct Communication',
'points' => [
'Employees can message Dean/HR',
'Used for emergencies, task clarifications, or leave requests',
'In-app messaging ensures secure and direct communication',
],
],
[
'title' => 'π Optional Future Enhancements',
'points' => [
'In-app calendar for scheduled tasks',
'Performance analytics dashboard',
'Leave request & approval system',
'Export task reports in PDF',
'Role-based app themes (visual indicators for roles)',
],
],
];
@endphp
@foreach($dashboardFeatures as $feature)
{{ $feature['title'] }}
@foreach($feature['points'] as $point)
- {{ $point }}
@endforeach
@endforeach