Technicians

Manage your technician workforce

Technician Management

Full technician profiles and skills tracking

Skills & Certifications

Track skills and certification status

Performance Reports

View performance metrics and analytics

Quick Overview

{{ \App\Models\Technician::count() }}
Total Technicians
{{ \App\Models\Technician::where('status', 'active')->count() }}
Active
{{ \App\Models\Technician::where('status', 'on_leave')->count() }}
On Leave
{{ \App\Models\TechnicianSkill::distinct('technician_id')->count() }}
With Skills

Recent Activity

@if(\App\Models\Technician::exists()) @foreach(\App\Models\Technician::with(['skills', 'performances'])->latest()->take(5)->get() as $technician)
{{ strtoupper(substr($technician->first_name, 0, 1) . substr($technician->last_name, 0, 1)) }}
{{ $technician->full_name }}
{{ $technician->employee_id }} • {{ ucfirst($technician->status) }} @if($technician->skills->count() > 0) • {{ $technician->skills->count() }} skills @endif
{{ $technician->created_at->diffForHumans() }}
@endforeach @else

No technicians found. Start by adding your first technician.

@endif