@extends('layouts.backend') @section('content')

Customers

#
Customer
Contact
Status
@php $i = 0; @endphp @foreach ($customers as $customer) @php $i++ @endphp
{{ $i }}
User ID: #{{ $customer->id }}
Company {{ $customer->legal_name }}
{{ $customer->email }}
{{ $customer->phone_number }}
New customer
@endforeach {{ $customers->links() }}
@endsection