@extends('template.app') @section('title', 'Customer') @section('css') @endsection @section('breadcrumb') @endsection @section('content')
@include('components.toast-notification')
@foreach($customers as $customer) @endforeach
Nama Email No. Telpon Alamat Aksi
{{ $customer->name }} {{ $customer->email }} {{ $customer->phone }} {{ $customer->address }}
@endsection @section('js') @endsection