contactType == 'Client' || ($payMethod->contactType === null && $client->billingContactId === 0)} checked {/if}>
{$client->fullName}
{$client->address1}
, {if $client->address2}
{$client->address2}
,{/if}
{$client->city}
,
{$client->state}
,
{$client->postcode}
,
{$client->country}
{foreach $client->contacts()->orderBy('firstname', 'asc')->orderBy('lastname', 'asc')->get() as $contact}
contactType == 'Contact' && $contact->id == $payMethod->getContactId()} checked {elseif $payMethod->contactType === null && $client->billingContactId > 0} {if $contact->id == $client->billingContactId || $contact->id == $selectedContactId} checked {/if} {/if}>
{$contact->fullName}
{$contact->address1}
, {if $contact->address2}
{$contact->address2}
,{/if}
{$contact->city}
,
{$contact->state}
,
{$contact->postcode}
,
{$contact->country}
{/foreach}