@extends('layouts.app') @section('title', 'Data Pelanggan') @section('breadcrumb') @endsection @section('content')
Reset
@forelse($customers as $customer) @empty @endforelse
Kode Nama Telepon Email Kota Total Order Aksi
{{ $customer->code }} {{ $customer->name }} {{ $customer->phone }} {{ $customer->email ?? '-' }} {{ $customer->city ?? '-' }} {{ $customer->service_orders_count }}
@csrf @method('DELETE')
Tidak ada data pelanggan
@endsection