@extends('layouts.app') @section('title', 'Detail Teknisi') @section('breadcrumb') @endsection @section('content')
{{ strtoupper(substr($technician->user->name,0,1)) }}
{{ $technician->user->name }}

{{ $technician->specialization }}

{{ $technician->status === 'aktif' ? 'Aktif' : 'Non-Aktif' }}
ID{{ $technician->employee_id }}
Email{{ $technician->user->email }}
Telepon{{ $technician->user->phone ?? '-' }}
Bergabung{{ $technician->created_at->format('d/m/Y') }}
Riwayat Order ({{ $technician->serviceOrders->count() }})
@forelse($technician->serviceOrders as $order) @empty @endforelse
No. OrderPelangganPerangkatTgl MasukStatus
{{ $order->order_number }} {{ $order->customer->name }} {{ $order->deviceType->name }} {{ $order->received_date->format('d/m/Y') }} {{ $order->status_label }}
Belum ada order
@endsection