@extends('layouts.portal.app') @section('content')
@if(Session::has('errorResponse'))
@endif
@foreach($customers as $customer) @endforeach
# Name Phone Email Actions
{{ $loop->iteration }} {{ $customer->names }} {{ $customer->phone }} {{ $customer->email }}
{{ $customers->render() }}
@include('portal.customers.edit') @include('portal.customers.delete') @endsection