@extends('layouts.app') @section('title', 'Technicians') @section('content')
@include('admin.partials.sidebar')
@include('admin.partials.topbar')

Technicians

Manage field technicians and installers

Add Technician
@forelse($technicians as $technician) @empty @endforelse
Technician Role Contact Area Status Actions
{{ strtoupper(substr($technician->name, 0, 1)) }}
{{ $technician->name }}
Joined {{ $technician->join_date ? $technician->join_date->format('M Y') : '-' }}
{{ ucfirst($technician->role) }}
{{ $technician->phone ?? '-' }}
{{ $technician->email ?? '-' }}
{{ $technician->area_coverage ?? '-' }} {{ $technician->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')

No technicians found

{{ $technicians->links() }}
@endsection