@extends('layouts.app') @section('title', 'Daftar Pelanggan') @section('content')
Daftar Pelanggan
Tambah Pelanggan
@foreach($customers as $customer) @endforeach
# Nama Alamat Telepon Aksi
{{ $loop->iteration }} {{ $customer->name }} {{ Str::limit($customer->address, 30) }} {{ $customer->phone }} Detail Edit
@csrf @method('DELETE')
@endsection