@extends('layouts.app') @section('title','Admin Dashboard - Movex HR') @section('page_title','HR Admin Dashboard') @section('page_subtitle','Control staff records, leave, payroll, attendance, recruitment and HR support.') @section('content')
| Employee | Type | Days | Status |
|---|---|---|---|
| {{ $leave->user?->name }} | {{ $leave->leaveType?->name }} | {{ $leave->total_days }} | {{ ucfirst($leave->status) }} |
No leave requests yet. | |||
| Employee | Subject | Priority | Status |
|---|---|---|---|
| {{ $ticket->user?->name }} | {{ $ticket->subject }} | {{ ucfirst($ticket->priority) }} | {{ ucfirst(str_replace('_',' ', $ticket->status)) }} |
No tickets yet. | |||
This first version includes employee records, departments, designations, attendance, leave, payroll, documents, performance reviews, recruitment, trainings, tickets, discipline and announcements. Quite a lot for a “plain Laravel app,” because apparently plain apps now need to grow up fast.