@extends('layouts.backend') @section('content')
#
Customer
Contact
Status
View
@php $i = 0; @endphp @foreach ($ExistingCustomers as $customer) @php $i++ @endphp
{{ $i }}
User ID: #{{ $customer->id }}
Company {{ $customer->legal_name }}
{{ $customer->email }}
{{ $customer->phone_number }}
Active customer
@endforeach
@endsection