@extends('layouts.admin.base-dashboard')
@section('title', 'Daftar Pelanggan')
@section('content')
@include('layouts.admin.include.message')
No |
Nama |
Alamat Email |
Nomor Handphone |
Tindakan |
@foreach ($customers as $customer)
{{ $loop->iteration }} |
{{ $customer->name }} |
{{ $customer->email }} |
{{ $customer->phone }} |
Edit
|
@endforeach
@endsection