@extends('app') @section('content')
Data Laporan
Data Laporan Pelanggan
@foreach ($laporan as $l) @endforeach
Nama Pelanggan Nama Barang Nomor HP Lokasi Foto Status Teknisi Aksi
{{ $l->pelanggan->nama }} {{ $l->nama_barang }} {{ $l->nomor_hp }} {{ $l->lokasi }} @if ($l->latitude && $l->longitude)
@endif
{{ $l->status }} {{ $l->teknisi ? $l->teknisi->nama : 'Belum Ditugaskan' }} @if ($l->status == 'Menunggu')
@csrf @method('post')
@else - @endif
{{-- ✅ Modal dipindah ke LUAR tabel agar struktur HTML valid --}} @foreach ($laporan as $l) @if ($l->status == 'Menunggu') @endif @endforeach
{{-- Modal Peta --}} @endsection @section('scripts') @endsection