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

Customers

@foreach ($customers as $customer) @endforeach
Actions ListID Name Full Name First Name Last Name Phone Alternate Phone Fax Is Active Sublevel Salutation Billing Address Shipping Address Contact Customer Type Terms Sales Rep Balance Total Balance Credit Limit Job Status Price Level Time Created Time Modified Edit Sequence
{{ $customer->ListID }} {{ $customer->Name }} {{ $customer->FullName }} {{ $customer->FirstName }} {{ $customer->LastName }} {{ $customer->Phone }} {{ $customer->AltPhone }} {{ $customer->Fax }} {{ $customer->IsActive }} {{ $customer->Sublevel }} {{ $customer->Salutation }} {{ $customer->BillAddress['Addr1'] }} {{ $customer->BillAddress['Addr2'] }}, {{ $customer->BillAddress['City'] }}, {{ $customer->BillAddress['State'] }} {{ $customer->BillAddress['PostalCode'] }} {{ $customer->ShipAddress['Addr1'] }} {{ $customer->ShipAddress['Addr2'] }}, {{ $customer->ShipAddress['City'] }}, {{ $customer->ShipAddress['State'] }} {{ $customer->ShipAddress['PostalCode'] }} {{ $customer->Contact }} {{ $customer->CustomerTypeRef['FullName'] }} {{ $customer->TermsRef['FullName'] }} {{ $customer->SalesRepRef['FullName'] }} {{ $customer->Balance }} {{ $customer->TotalBalance }} {{ $customer->CreditLimit }} {{ $customer->JobStatus }} {{ $customer->PriceLevelRef['FullName'] }} {{ $customer->TimeCreated }} {{ $customer->TimeModified }} {{ $customer->EditSequence }}
@endsection