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