@extends('layouts.kurir_sidebar') @section('title', 'Data Pelanggan') @section('content')
{{-- Header --}}

Daftar Pelanggan

Total {{ count($pelanggan) }} pelanggan terdaftar

{{-- Search Box --}}
{{-- === DESKTOP: Table View (hidden on mobile) === --}} {{-- === MOBILE: Card View (hidden on desktop) === --}}
@foreach($pelanggan as $p) @php $koordinat = trim($p->titik_koordinat ?? ''); $hasCoord = !empty($koordinat); if ($hasCoord) { $mapsUrl = 'https://maps.google.com/?q=' . urlencode($koordinat); } else { $mapsUrl = 'https://maps.google.com/?q=' . urlencode(($p->address ?? '') . ', Indonesia'); } @endphp
{{-- Avatar --}}
{{ strtoupper(substr($p->name, 0, 1)) }}
{{-- Info --}}

{{ $p->name }}

{{ $p->customers_id }}
@if(!empty($p->address)) {{-- Alamat teks --}}

{{ $p->address }}

{{-- Tombol buka Maps --}} {{ $hasCoord ? 'Buka di Maps (GPS)' : 'Cari di Google Maps' }} @if($hasCoord) ✓ Akurat @endif @else

Belum ada alamat

@endif
@endforeach
@endsection