@extends('layouts.master') @section('content')

Pelanggan

Tambah Pelanggan
@csrf @if (isset($customer)) @endif
Daftar Pelanggan
@if (isset($customers)) @foreach ($customers as $customer) @endforeach @endif
Nama Alamat Telepon Kota Aksi
{{ $customer->nama }} {{ $customer->alamat }} {{ $customer->telepon }} {{ $customer->kota }}
@endsection