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

Tabel Laporan Per Teknisi

Buat Laporan
{{-- Form Filter Tanggal --}}
{{-- Tombol Ekspor --}} {{-- Tabel Laporan --}}
@foreach ($laporan_teknisi as $index => $item) @endforeach
No Nama user Jumlah Tugas Status Tanggal Laporan Created By Action
{{ $index + 1 }} {{ $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