@extends('layouts.supervisor') @section('content')

Tabel laporan per teknisi

{{-- --}} @foreach ($laporan_teknisi as $index => $item) {{-- --}} @endforeach
NoIdNama user Jumlah Tugas Status Tanggal Laporan Created By Action
{{ $index + 1 }}{{ $item->id }}{{ $item->user->name ?? '-' }} {{ $item->jumlah_tugas ?? 0 }} {{ ucfirst($item->status) }} {{ $item->tanggal_laporan ? $item->tanggal_laporan->format('d-m-Y') : '-' }} {{ Auth::user()->name }}
@csrf @method('DELETE')
@endsection