@extends('dashboard.layout.master') @section('content')

{{ $title }}

@foreach ($Customers as $key => $customer) @endforeach
# Full Name Email Phone Number Address Notes Actions
{{ $key + 1 }} {{ $customer->full_name }} {{ $customer->email }} {{ $customer->phone_number }} {{ $customer->address }} {{ $customer->notes }} Edit Delete
@endsection @section('scripts') @endsection