@extends('layout')
@section('content')
Data Pelanggan
Tambah Pelanggan
No |
Nama |
Id Pelanggan |
Area |
Alamat |
Tipe |
Aksi |
@foreach ($pegawai as $item)
{{ $loop->iteration }} |
{{ $item->nama }} |
{{ $item->id_pelanggan }} |
{{ $item->area }} |
{{ $item->alamat }} |
{{ $item->tipe }} |
|
@endforeach
@endsection