@extends('layouts.app') @section('title', 'Data Teknisi') @section('breadcrumb') @endsection @section('content')
Reset
@forelse($technicians as $tech) @empty @endforelse
ID Karyawan Nama Email Spesialisasi Order Aktif Total Order Status Aksi
{{ $tech->employee_id }} {{ $tech->user->name }} {{ $tech->user->email }} {{ $tech->specialization }} {{ $tech->active_orders_count }} {{ $tech->service_orders_count }} @if($tech->status === 'aktif') Aktif @else Non-Aktif @endif
@csrf @method('DELETE')
Tidak ada data teknisi
@endsection