@extends('layouts.master')
@section('content')
Nama |
Alamat |
Telepon |
Kota |
Aksi |
@if (isset($customers))
@foreach ($customers as $customer)
{{ $customer->nama }} |
{{ $customer->alamat }} |
{{ $customer->telepon }} |
{{ $customer->kota }} |
|
@endforeach
@endif
@endsection