@extends('layouts.app') @section('title', 'Commercial Contract Accounts') @section('breadcrumb')Commercial Contract Accounts@endsection @section('content')

Commercial Contract Accounts

Manage builder and private contract accounts

{{-- Add form --}}

New Commercial Account

@csrf
@if($customers->isEmpty())

No commercial accounts yet. Click Add Account to get started.

@else
@foreach($customers as $c)
{{ $c->typeLabel() }}
{{ $c->name }}
@if($c->notes)
{{ Str::limit($c->notes,60) }}
@endif
{{ $c->builder_pos_count }} PO{{ $c->builder_pos_count !== 1 ? 's' : '' }} {{ $c->builder_ets_count }} ETS {{ $c->private_details_count }} Detail{{ $c->private_details_count !== 1 ? 's' : '' }}
@endforeach
@endif
@endsection