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